pub enum Option<T> {
None,
Some(T),
}Expand description
The Option type. See the module level documentation for more.
Variants
None
No value.
Some(T)
Some value of type T.
Implementations
impl<T> Option<T>
source
impl<T> Option<T>
sourcepub fn is_some_and(&self, f: impl FnOnce(&T) -> bool) -> bool
source
pub fn is_some_and(&self, f: impl FnOnce(&T) -> bool) -> bool
sourceReturns true if the option is a Some and the value inside of it matches a predicate.
Examples
#![feature(is_some_with)]
let x: Option<u32> = Some(2);
assert_eq!(x.is_some_and(|&x| x > 1), true);
let x: Option<u32> = Some(0);
assert_eq!(x.is_some_and(|&x| x > 1), false);
let x: Option<u32> = None;
assert_eq!(x.is_some_and(|&x| x > 1), false);Runpub const fn as_ref(&self) -> Option<&T>
const: 1.48.0 · source
pub const fn as_ref(&self) -> Option<&T>
const: 1.48.0 · sourceConverts from &Option<T> to Option<&T>.
Examples
Converts an Option<String> into an Option<usize>, preserving
the original. The map method takes the self argument by value, consuming the original,
so this technique uses as_ref to first take an Option to a reference
to the value inside the original.
let text: Option<String> = Some("Hello, world!".to_string());
// First, cast `Option<String>` to `Option<&String>` with `as_ref`,
// then consume *that* with `map`, leaving `text` on the stack.
let text_length: Option<usize> = text.as_ref().map(|s| s.len());
println!("still can print text: {text:?}");Runpub fn as_pin_mut(self: Pin<&mut Option<T>>) -> Option<Pin<&mut T>>
1.33.0 (const: unstable) · source
pub fn as_pin_mut(self: Pin<&mut Option<T>>) -> Option<Pin<&mut T>>
1.33.0 (const: unstable) · sourcepub fn expect(self, msg: &str) -> T
const: unstable · source
pub fn expect(self, msg: &str) -> T
const: unstable · sourceReturns the contained Some value, consuming the self value.
Panics
Panics if the value is a None with a custom panic message provided by
msg.
Examples
let x = Some("value");
assert_eq!(x.expect("fruits are healthy"), "value");Runlet x: Option<&str> = None;
x.expect("fruits are healthy"); // panics with `fruits are healthy`Runpub fn unwrap(self) -> T
const: unstable · source
pub fn unwrap(self) -> T
const: unstable · sourceReturns the contained Some value, consuming the self value.
Because this function may panic, its use is generally discouraged.
Instead, prefer to use pattern matching and handle the None
case explicitly, or call unwrap_or, unwrap_or_else, or
unwrap_or_default.
Panics
Panics if the self value equals None.
Examples
let x = Some("air");
assert_eq!(x.unwrap(), "air");Runlet x: Option<&str> = None;
assert_eq!(x.unwrap(), "air"); // failsRunpub fn unwrap_or(self, default: T) -> T
const: unstable · source
pub fn unwrap_or(self, default: T) -> T
const: unstable · sourceReturns the contained Some value or a provided default.
Arguments passed to unwrap_or are eagerly evaluated; if you are passing
the result of a function call, it is recommended to use unwrap_or_else,
which is lazily evaluated.
Examples
assert_eq!(Some("car").unwrap_or("bike"), "car");
assert_eq!(None.unwrap_or("bike"), "bike");Runpub fn unwrap_or_else<F>(self, f: F) -> T where
F: FnOnce() -> T,
const: unstable · source
pub fn unwrap_or_else<F>(self, f: F) -> T where
F: FnOnce() -> T,
const: unstable · sourcepub fn unwrap_or_default(self) -> T where
T: Default,
const: unstable · source
pub fn unwrap_or_default(self) -> T where
T: Default,
const: unstable · sourceReturns the contained Some value or a default.
Consumes the self argument then, if Some, returns the contained
value, otherwise if None, returns the default value for that
type.
Examples
Converts a string to an integer, turning poorly-formed strings
into 0 (the default value for integers). parse converts
a string to any other type that implements FromStr, returning
None on error.
let good_year_from_input = "1909";
let bad_year_from_input = "190blarg";
let good_year = good_year_from_input.parse().ok().unwrap_or_default();
let bad_year = bad_year_from_input.parse().ok().unwrap_or_default();
assert_eq!(1909, good_year);
assert_eq!(0, bad_year);Runpub unsafe fn unwrap_unchecked(self) -> T
1.58.0 (const: unstable) · source
pub unsafe fn unwrap_unchecked(self) -> T
1.58.0 (const: unstable) · sourceReturns the contained Some value, consuming the self value,
without checking that the value is not None.
Safety
Calling this method on None is undefined behavior.
Examples
let x = Some("air");
assert_eq!(unsafe { x.unwrap_unchecked() }, "air");Runlet x: Option<&str> = None;
assert_eq!(unsafe { x.unwrap_unchecked() }, "air"); // Undefined behavior!Runpub fn map<U, F>(self, f: F) -> Option<U> where
F: FnOnce(T) -> U,
const: unstable · source
pub fn map<U, F>(self, f: F) -> Option<U> where
F: FnOnce(T) -> U,
const: unstable · sourceMaps an Option<T> to Option<U> by applying a function to a contained value.
Examples
Converts an Option<String> into an Option<usize>, consuming
the original:
let maybe_some_string = Some(String::from("Hello, World!"));
// `Option::map` takes self *by value*, consuming `maybe_some_string`
let maybe_some_len = maybe_some_string.map(|s| s.len());
assert_eq!(maybe_some_len, Some(13));Runpub fn inspect<F>(self, f: F) -> Option<T> where
F: FnOnce(&T),
const: unstable · source
pub fn inspect<F>(self, f: F) -> Option<T> where
F: FnOnce(&T),
const: unstable · sourceCalls the provided closure with a reference to the contained value (if Some).
Examples
#![feature(result_option_inspect)]
let v = vec![1, 2, 3, 4, 5];
// prints "got: 4"
let x: Option<&usize> = v.get(3).inspect(|x| println!("got: {x}"));
// prints nothing
let x: Option<&usize> = v.get(5).inspect(|x| println!("got: {x}"));Runpub fn map_or<U, F>(self, default: U, f: F) -> U where
F: FnOnce(T) -> U,
const: unstable · source
pub fn map_or<U, F>(self, default: U, f: F) -> U where
F: FnOnce(T) -> U,
const: unstable · sourceReturns the provided default result (if none), or applies a function to the contained value (if any).
Arguments passed to map_or are eagerly evaluated; if you are passing
the result of a function call, it is recommended to use map_or_else,
which is lazily evaluated.
Examples
let x = Some("foo");
assert_eq!(x.map_or(42, |v| v.len()), 3);
let x: Option<&str> = None;
assert_eq!(x.map_or(42, |v| v.len()), 42);Runpub fn map_or_else<U, D, F>(self, default: D, f: F) -> U where
D: FnOnce() -> U,
F: FnOnce(T) -> U,
const: unstable · source
pub fn map_or_else<U, D, F>(self, default: D, f: F) -> U where
D: FnOnce() -> U,
F: FnOnce(T) -> U,
const: unstable · sourcepub fn ok_or<E>(self, err: E) -> Result<T, E>
const: unstable · source
pub fn ok_or<E>(self, err: E) -> Result<T, E>
const: unstable · sourceTransforms the Option<T> into a Result<T, E>, mapping Some(v) to
Ok(v) and None to Err(err).
Arguments passed to ok_or are eagerly evaluated; if you are passing the
result of a function call, it is recommended to use ok_or_else, which is
lazily evaluated.
Examples
let x = Some("foo");
assert_eq!(x.ok_or(0), Ok("foo"));
let x: Option<&str> = None;
assert_eq!(x.ok_or(0), Err(0));Runpub fn ok_or_else<E, F>(self, err: F) -> Result<T, E> where
F: FnOnce() -> E,
const: unstable · source
pub fn ok_or_else<E, F>(self, err: F) -> Result<T, E> where
F: FnOnce() -> E,
const: unstable · sourceTransforms the Option<T> into a Result<T, E>, mapping Some(v) to
Ok(v) and None to Err(err()).
Examples
let x = Some("foo");
assert_eq!(x.ok_or_else(|| 0), Ok("foo"));
let x: Option<&str> = None;
assert_eq!(x.ok_or_else(|| 0), Err(0));Runpub fn as_deref(&self) -> Option<&<T as Deref>::Target> where
T: Deref,
1.40.0 (const: unstable) · source
pub fn as_deref(&self) -> Option<&<T as Deref>::Target> where
T: Deref,
1.40.0 (const: unstable) · sourceConverts from Option<T> (or &Option<T>) to Option<&T::Target>.
Leaves the original Option in-place, creating a new one with a reference
to the original one, additionally coercing the contents via Deref.
Examples
let x: Option<String> = Some("hey".to_owned());
assert_eq!(x.as_deref(), Some("hey"));
let x: Option<String> = None;
assert_eq!(x.as_deref(), None);Runpub fn as_deref_mut(&mut self) -> Option<&mut <T as Deref>::Target> where
T: DerefMut,
1.40.0 (const: unstable) · source
pub fn as_deref_mut(&mut self) -> Option<&mut <T as Deref>::Target> where
T: DerefMut,
1.40.0 (const: unstable) · sourceConverts from Option<T> (or &mut Option<T>) to Option<&mut T::Target>.
Leaves the original Option in-place, creating a new one containing a mutable reference to
the inner type’s Deref::Target type.
Examples
let mut x: Option<String> = Some("hey".to_owned());
assert_eq!(x.as_deref_mut().map(|x| {
x.make_ascii_uppercase();
x
}), Some("HEY".to_owned().as_mut_str()));Runpub fn iter(&self) -> Iter<'_, T>ⓘNotable traits for Iter<'a, A>impl<'a, A> Iterator for Iter<'a, A> type Item = &'a A;
const: unstable · source
pub fn iter(&self) -> Iter<'_, T>ⓘNotable traits for Iter<'a, A>impl<'a, A> Iterator for Iter<'a, A> type Item = &'a A;
const: unstable · sourcepub fn iter_mut(&mut self) -> IterMut<'_, T>ⓘNotable traits for IterMut<'a, A>impl<'a, A> Iterator for IterMut<'a, A> type Item = &'a mut A;
source
pub fn iter_mut(&mut self) -> IterMut<'_, T>ⓘNotable traits for IterMut<'a, A>impl<'a, A> Iterator for IterMut<'a, A> type Item = &'a mut A;
sourcepub fn and<U>(self, optb: Option<U>) -> Option<U>
const: unstable · source
pub fn and<U>(self, optb: Option<U>) -> Option<U>
const: unstable · sourceReturns None if the option is None, otherwise returns optb.
Examples
let x = Some(2);
let y: Option<&str> = None;
assert_eq!(x.and(y), None);
let x: Option<u32> = None;
let y = Some("foo");
assert_eq!(x.and(y), None);
let x = Some(2);
let y = Some("foo");
assert_eq!(x.and(y), Some("foo"));
let x: Option<u32> = None;
let y: Option<&str> = None;
assert_eq!(x.and(y), None);Runpub fn and_then<U, F>(self, f: F) -> Option<U> where
F: FnOnce(T) -> Option<U>,
const: unstable · source
pub fn and_then<U, F>(self, f: F) -> Option<U> where
F: FnOnce(T) -> Option<U>,
const: unstable · sourceReturns None if the option is None, otherwise calls f with the
wrapped value and returns the result.
Some languages call this operation flatmap.
Examples
fn sq_then_to_string(x: u32) -> Option<String> {
x.checked_mul(x).map(|sq| sq.to_string())
}
assert_eq!(Some(2).and_then(sq_then_to_string), Some(4.to_string()));
assert_eq!(Some(1_000_000).and_then(sq_then_to_string), None); // overflowed!
assert_eq!(None.and_then(sq_then_to_string), None);RunOften used to chain fallible operations that may return None.
let arr_2d = [["A0", "A1"], ["B0", "B1"]];
let item_0_1 = arr_2d.get(0).and_then(|row| row.get(1));
assert_eq!(item_0_1, Some(&"A1"));
let item_2_0 = arr_2d.get(2).and_then(|row| row.get(0));
assert_eq!(item_2_0, None);Runpub fn filter<P>(self, predicate: P) -> Option<T> where
P: FnOnce(&T) -> bool,
1.27.0 (const: unstable) · source
pub fn filter<P>(self, predicate: P) -> Option<T> where
P: FnOnce(&T) -> bool,
1.27.0 (const: unstable) · sourceReturns None if the option is None, otherwise calls predicate
with the wrapped value and returns:
Some(t)ifpredicatereturnstrue(wheretis the wrapped value), andNoneifpredicatereturnsfalse.
This function works similar to Iterator::filter(). You can imagine
the Option<T> being an iterator over one or zero elements. filter()
lets you decide which elements to keep.
Examples
fn is_even(n: &i32) -> bool {
n % 2 == 0
}
assert_eq!(None.filter(is_even), None);
assert_eq!(Some(3).filter(is_even), None);
assert_eq!(Some(4).filter(is_even), Some(4));Runpub fn or(self, optb: Option<T>) -> Option<T>
const: unstable · source
pub fn or(self, optb: Option<T>) -> Option<T>
const: unstable · sourceReturns the option if it contains a value, otherwise returns optb.
Arguments passed to or are eagerly evaluated; if you are passing the
result of a function call, it is recommended to use or_else, which is
lazily evaluated.
Examples
let x = Some(2);
let y = None;
assert_eq!(x.or(y), Some(2));
let x = None;
let y = Some(100);
assert_eq!(x.or(y), Some(100));
let x = Some(2);
let y = Some(100);
assert_eq!(x.or(y), Some(2));
let x: Option<u32> = None;
let y = None;
assert_eq!(x.or(y), None);Runpub fn or_else<F>(self, f: F) -> Option<T> where
F: FnOnce() -> Option<T>,
const: unstable · source
pub fn or_else<F>(self, f: F) -> Option<T> where
F: FnOnce() -> Option<T>,
const: unstable · sourceReturns the option if it contains a value, otherwise calls f and
returns the result.
Examples
fn nobody() -> Option<&'static str> { None }
fn vikings() -> Option<&'static str> { Some("vikings") }
assert_eq!(Some("barbarians").or_else(vikings), Some("barbarians"));
assert_eq!(None.or_else(vikings), Some("vikings"));
assert_eq!(None.or_else(nobody), None);Runpub fn xor(self, optb: Option<T>) -> Option<T>
1.37.0 (const: unstable) · source
pub fn xor(self, optb: Option<T>) -> Option<T>
1.37.0 (const: unstable) · sourceReturns Some if exactly one of self, optb is Some, otherwise returns None.
Examples
let x = Some(2);
let y: Option<u32> = None;
assert_eq!(x.xor(y), Some(2));
let x: Option<u32> = None;
let y = Some(2);
assert_eq!(x.xor(y), Some(2));
let x = Some(2);
let y = Some(2);
assert_eq!(x.xor(y), None);
let x: Option<u32> = None;
let y: Option<u32> = None;
assert_eq!(x.xor(y), None);Runpub fn insert(&mut self, value: T) -> &mut T
1.53.0 (const: unstable) · source
pub fn insert(&mut self, value: T) -> &mut T
1.53.0 (const: unstable) · sourceInserts value into the option, then returns a mutable reference to it.
If the option already contains a value, the old value is dropped.
See also Option::get_or_insert, which doesn’t update the value if
the option already contains Some.
Example
let mut opt = None;
let val = opt.insert(1);
assert_eq!(*val, 1);
assert_eq!(opt.unwrap(), 1);
let val = opt.insert(2);
assert_eq!(*val, 2);
*val = 3;
assert_eq!(opt.unwrap(), 3);Runpub fn get_or_insert(&mut self, value: T) -> &mut T
1.20.0 (const: unstable) · source
pub fn get_or_insert(&mut self, value: T) -> &mut T
1.20.0 (const: unstable) · sourceInserts value into the option if it is None, then
returns a mutable reference to the contained value.
See also Option::insert, which updates the value even if
the option already contains Some.
Examples
let mut x = None;
{
let y: &mut u32 = x.get_or_insert(5);
assert_eq!(y, &5);
*y = 7;
}
assert_eq!(x, Some(7));Runpub fn get_or_insert_default(&mut self) -> &mut T where
T: Default,
const: unstable · source
pub fn get_or_insert_default(&mut self) -> &mut T where
T: Default,
const: unstable · sourcepub fn get_or_insert_with<F>(&mut self, f: F) -> &mut T where
F: FnOnce() -> T,
1.20.0 (const: unstable) · source
pub fn get_or_insert_with<F>(&mut self, f: F) -> &mut T where
F: FnOnce() -> T,
1.20.0 (const: unstable) · sourcepub fn replace(&mut self, value: T) -> Option<T>
1.31.0 (const: unstable) · source
pub fn replace(&mut self, value: T) -> Option<T>
1.31.0 (const: unstable) · sourceReplaces the actual value in the option by the value given in parameter,
returning the old value if present,
leaving a Some in its place without deinitializing either one.
Examples
let mut x = Some(2);
let old = x.replace(5);
assert_eq!(x, Some(5));
assert_eq!(old, Some(2));
let mut x = None;
let old = x.replace(3);
assert_eq!(x, Some(3));
assert_eq!(old, None);Runpub fn contains<U>(&self, x: &U) -> bool where
U: PartialEq<T>,
const: unstable · source
pub fn contains<U>(&self, x: &U) -> bool where
U: PartialEq<T>,
const: unstable · sourceReturns true if the option is a Some value containing the given value.
Examples
#![feature(option_result_contains)]
let x: Option<u32> = Some(2);
assert_eq!(x.contains(&2), true);
let x: Option<u32> = Some(3);
assert_eq!(x.contains(&2), false);
let x: Option<u32> = None;
assert_eq!(x.contains(&2), false);Runpub fn zip_with<U, F, R>(self, other: Option<U>, f: F) -> Option<R> where
F: FnOnce(T, U) -> R,
const: unstable · source
pub fn zip_with<U, F, R>(self, other: Option<U>, f: F) -> Option<R> where
F: FnOnce(T, U) -> R,
const: unstable · sourceZips self and another Option with function f.
If self is Some(s) and other is Some(o), this method returns Some(f(s, o)).
Otherwise, None is returned.
Examples
#![feature(option_zip)]
#[derive(Debug, PartialEq)]
struct Point {
x: f64,
y: f64,
}
impl Point {
fn new(x: f64, y: f64) -> Self {
Self { x, y }
}
}
let x = Some(17.5);
let y = Some(42.7);
assert_eq!(x.zip_with(y, Point::new), Some(Point { x: 17.5, y: 42.7 }));
assert_eq!(x.zip_with(None, Point::new), None);Runimpl<T, U> Option<(T, U)>
source
impl<T, U> Option<(T, U)>
sourcepub const fn unzip(self) -> (Option<T>, Option<U>)
source
pub const fn unzip(self) -> (Option<T>, Option<U>)
sourceUnzips an option containing a tuple of two options.
If self is Some((a, b)) this method returns (Some(a), Some(b)).
Otherwise, (None, None) is returned.
Examples
#![feature(unzip_option)]
let x = Some((1, "hi"));
let y = None::<(u8, u32)>;
assert_eq!(x.unzip(), (Some(1), Some("hi")));
assert_eq!(y.unzip(), (None, None));Runimpl<'_, T> Option<&'_ T>
source
impl<'_, T> Option<&'_ T>
sourceimpl<'_, T> Option<&'_ mut T>
source
impl<'_, T> Option<&'_ mut T>
sourceimpl<T, E> Option<Result<T, E>>
source
impl<T, E> Option<Result<T, E>>
sourcepub fn transpose(self) -> Result<Option<T>, E>
1.33.0 (const: unstable) · source
pub fn transpose(self) -> Result<Option<T>, E>
1.33.0 (const: unstable) · sourceTransposes an Option of a Result into a Result of an Option.
None will be mapped to Ok(None).
Some(Ok(_)) and Some(Err(_)) will be mapped to
Ok(Some(_)) and Err(_).
Examples
#[derive(Debug, Eq, PartialEq)]
struct SomeErr;
let x: Result<Option<i32>, SomeErr> = Ok(Some(5));
let y: Option<Result<i32, SomeErr>> = Some(Ok(5));
assert_eq!(x, y.transpose());Runimpl<T> Option<Option<T>>
source
impl<T> Option<Option<T>>
sourcepub fn flatten(self) -> Option<T>
1.40.0 (const: unstable) · source
pub fn flatten(self) -> Option<T>
1.40.0 (const: unstable) · sourceConverts from Option<Option<T>> to Option<T>.
Examples
Basic usage:
let x: Option<Option<u32>> = Some(Some(6));
assert_eq!(Some(6), x.flatten());
let x: Option<Option<u32>> = Some(None);
assert_eq!(None, x.flatten());
let x: Option<Option<u32>> = None;
assert_eq!(None, x.flatten());RunFlattening only removes one level of nesting at a time:
let x: Option<Option<Option<u32>>> = Some(Some(Some(6)));
assert_eq!(Some(Some(6)), x.flatten());
assert_eq!(Some(6), x.flatten().flatten());RunTrait Implementations
impl<'a, T> From<&'a Option<T>> for Option<&'a T>
1.30.0 (const: unstable) · source
impl<'a, T> From<&'a Option<T>> for Option<&'a T>
1.30.0 (const: unstable) · sourcefn from(o: &'a Option<T>) -> Option<&'a T>
const: unstable · source
fn from(o: &'a Option<T>) -> Option<&'a T>
const: unstable · sourceConverts from &Option<T> to Option<&T>.
Examples
Converts an Option<String> into an Option<usize>, preserving
the original. The map method takes the self argument by value, consuming the original,
so this technique uses from to first take an Option to a reference
to the value inside the original.
let s: Option<String> = Some(String::from("Hello, Rustaceans!"));
let o: Option<usize> = Option::from(&s).map(|ss: &String| ss.len());
println!("Can still print s: {s:?}");
assert_eq!(o, Some(18));Runimpl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T>
1.30.0 (const: unstable) · source
impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T>
1.30.0 (const: unstable) · sourceimpl<A, V> FromIterator<Option<A>> for Option<V> where
V: FromIterator<A>,
source
impl<A, V> FromIterator<Option<A>> for Option<V> where
V: FromIterator<A>,
sourcefn from_iter<I>(iter: I) -> Option<V> where
I: IntoIterator<Item = Option<A>>,
source
fn from_iter<I>(iter: I) -> Option<V> where
I: IntoIterator<Item = Option<A>>,
sourceTakes each element in the Iterator: if it is None,
no further elements are taken, and the None is
returned. Should no None occur, a container of type
V containing the values of each Option is returned.
Examples
Here is an example which increments every integer in a vector.
We use the checked variant of add that returns None when the
calculation would result in an overflow.
let items = vec![0_u16, 1, 2];
let res: Option<Vec<u16>> = items
.iter()
.map(|x| x.checked_add(1))
.collect();
assert_eq!(res, Some(vec![1, 2, 3]));RunAs you can see, this will return the expected, valid items.
Here is another example that tries to subtract one from another list of integers, this time checking for underflow:
let items = vec![2_u16, 1, 0];
let res: Option<Vec<u16>> = items
.iter()
.map(|x| x.checked_sub(1))
.collect();
assert_eq!(res, None);RunSince the last element is zero, it would underflow. Thus, the resulting
value is None.
Here is a variation on the previous example, showing that no
further elements are taken from iter after the first None.
let items = vec![3_u16, 2, 1, 10];
let mut shared = 0;
let res: Option<Vec<u16>> = items
.iter()
.map(|x| { shared += x; x.checked_sub(2) })
.collect();
assert_eq!(res, None);
assert_eq!(shared, 6);RunSince the third element caused an underflow, no further elements were taken,
so the final value of shared is 6 (= 3 + 2 + 1), not 16.
impl<T> FromResidual<<Option<T> as Try>::Residual> for Option<T>
const: unstable · source
impl<T> FromResidual<<Option<T> as Try>::Residual> for Option<T>
const: unstable · sourcefn from_residual(residual: Option<Infallible>) -> Option<T>
const: unstable · source
fn from_residual(residual: Option<Infallible>) -> Option<T>
const: unstable · sourceConstructs the type from a compatible Residual type. Read more
impl<T> FromResidual<Yeet<()>> for Option<T>
source
impl<T> FromResidual<Yeet<()>> for Option<T>
sourceimpl<'a, T> IntoIterator for &'a mut Option<T>
1.4.0 · source
impl<'a, T> IntoIterator for &'a mut Option<T>
1.4.0 · sourceimpl<'a, T> IntoIterator for &'a Option<T>
1.4.0 · source
impl<'a, T> IntoIterator for &'a Option<T>
1.4.0 · sourceimpl<T> IntoIterator for Option<T>
source
impl<T> IntoIterator for Option<T>
sourceimpl<T> Ord for Option<T> where
T: Ord,
source
impl<T> Ord for Option<T> where
T: Ord,
sourceimpl<T> PartialOrd<Option<T>> for Option<T> where
T: PartialOrd<T>,
source
impl<T> PartialOrd<Option<T>> for Option<T> where
T: PartialOrd<T>,
sourcefn partial_cmp(&self, other: &Option<T>) -> Option<Ordering>
source
fn partial_cmp(&self, other: &Option<T>) -> Option<Ordering>
sourceThis method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
source
fn lt(&self, other: &Rhs) -> bool
sourceThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool
source
fn le(&self, other: &Rhs) -> bool
sourceThis method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<T> Residual<T> for Option<Infallible>
source
impl<T> Residual<T> for Option<Infallible>
sourceimpl<T, U> Sum<Option<U>> for Option<T> where
T: Sum<U>,
1.37.0 · source
impl<T, U> Sum<Option<U>> for Option<T> where
T: Sum<U>,
1.37.0 · sourcefn sum<I>(iter: I) -> Option<T> where
I: Iterator<Item = Option<U>>,
source
fn sum<I>(iter: I) -> Option<T> where
I: Iterator<Item = Option<U>>,
sourceTakes each element in the Iterator: if it is a None, no further
elements are taken, and the None is returned. Should no None
occur, the sum of all elements is returned.
Examples
This sums up the position of the character ‘a’ in a vector of strings,
if a word did not have the character ‘a’ the operation returns None:
let words = vec!["have", "a", "great", "day"];
let total: Option<usize> = words.iter().map(|w| w.find('a')).sum();
assert_eq!(total, Some(5));Runimpl<T> Try for Option<T>
const: unstable · source
impl<T> Try for Option<T>
const: unstable · sourcetype Residual = Option<Infallible>
type Residual = Option<Infallible>
The type of the value passed to FromResidual::from_residual
as part of ? when short-circuiting. Read more
fn from_output(output: <Option<T> as Try>::Output) -> Option<T>
const: unstable · source
fn from_output(output: <Option<T> as Try>::Output) -> Option<T>
const: unstable · sourceConstructs the type from its Output type. Read more
fn branch(
self
) -> ControlFlow<<Option<T> as Try>::Residual, <Option<T> as Try>::Output>
const: unstable · source
fn branch(
self
) -> ControlFlow<<Option<T> as Try>::Residual, <Option<T> as Try>::Output>
const: unstable · sourceUsed in ? to decide whether the operator should produce a value
(because this returned ControlFlow::Continue)
or propagate a value back to the caller
(because this returned ControlFlow::Break). Read more
impl<T> Copy for Option<T> where
T: Copy,
sourceimpl<T> Eq for Option<T> where
T: Eq,
sourceimpl<T> StructuralEq for Option<T>
sourceimpl<T> StructuralPartialEq for Option<T>
sourceAuto Trait Implementations
impl<T> RefUnwindSafe for Option<T> where
T: RefUnwindSafe,
impl<T> Send for Option<T> where
T: Send,
impl<T> Sync for Option<T> where
T: Sync,
impl<T> Unpin for Option<T> where
T: Unpin,
impl<T> UnwindSafe for Option<T> where
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
sourceUses borrowed data to replace owned data, usually by cloning. Read more