2018-10-06 16:18:06 +00:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-01-28 00:04:22 +00:00
|
|
|
fn some_func(a: Option<u32>) -> Option<u32> {
|
2018-12-09 22:26:16 +00:00
|
|
|
if a.is_none() {
|
|
|
|
return None;
|
|
|
|
}
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
a
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub enum SeemsOption<T> {
|
|
|
|
Some(T),
|
2018-12-09 22:26:16 +00:00
|
|
|
None,
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> SeemsOption<T> {
|
|
|
|
pub fn is_none(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
SeemsOption::None => true,
|
|
|
|
SeemsOption::Some(_) => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn returns_something_similar_to_option(a: SeemsOption<u32>) -> SeemsOption<u32> {
|
|
|
|
if a.is_none() {
|
|
|
|
return SeemsOption::None;
|
|
|
|
}
|
|
|
|
|
|
|
|
a
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct SomeStruct {
|
2018-12-09 22:26:16 +00:00
|
|
|
pub opt: Option<u32>,
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SomeStruct {
|
2018-12-12 08:46:52 +00:00
|
|
|
#[rustfmt::skip]
|
2018-12-09 22:26:16 +00:00
|
|
|
pub fn func(&self) -> Option<u32> {
|
|
|
|
if (self.opt).is_none() {
|
|
|
|
return None;
|
|
|
|
}
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2018-12-12 08:46:52 +00:00
|
|
|
if self.opt.is_none() {
|
|
|
|
return None
|
|
|
|
}
|
|
|
|
|
|
|
|
let _ = if self.opt.is_none() {
|
|
|
|
return None;
|
|
|
|
} else {
|
|
|
|
self.opt
|
|
|
|
};
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
self.opt
|
|
|
|
}
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2018-12-09 22:26:16 +00:00
|
|
|
some_func(Some(42));
|
|
|
|
some_func(None);
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
let some_struct = SomeStruct { opt: Some(54) };
|
|
|
|
some_struct.func();
|
2018-01-28 00:04:22 +00:00
|
|
|
|
|
|
|
let so = SeemsOption::Some(45);
|
|
|
|
returns_something_similar_to_option(so);
|
|
|
|
}
|