pub enum Option<T> {
None,
Some(T),
}
dep_bytemuck
only.Expand description
The Option
type. See the module level documentation for more.
Variants§
Implementations§
Source§impl<T> Option<T>
impl<T> Option<T>
1.70.0 · Sourcepub fn is_some_and(self, f: impl FnOnce(T) -> bool) -> bool
pub fn is_some_and(self, f: impl FnOnce(T) -> bool) -> bool
Returns true
if the option is a Some
and the value inside of it matches a predicate.
§Examples
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);
1.82.0 · Sourcepub fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool
pub fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool
Returns true
if the option is a None
or the value inside of it matches a predicate.
§Examples
let x: Option<u32> = Some(2);
assert_eq!(x.is_none_or(|x| x > 1), true);
let x: Option<u32> = Some(0);
assert_eq!(x.is_none_or(|x| x > 1), false);
let x: Option<u32> = None;
assert_eq!(x.is_none_or(|x| x > 1), true);
1.0.0 (const: 1.48.0) · Sourcepub const fn as_ref(&self) -> Option<&T> ⓘ
pub const fn as_ref(&self) -> Option<&T> ⓘ
Converts from &Option<T>
to Option<&T>
.
§Examples
Calculates the length of an Option<String>
as an Option<usize>
without moving the String
. 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:?}");
1.0.0 (const: 1.83.0) · Sourcepub const fn as_mut(&mut self) -> Option<&mut T> ⓘ
pub const fn as_mut(&mut self) -> Option<&mut T> ⓘ
Converts from &mut Option<T>
to Option<&mut T>
.
§Examples
let mut x = Some(2);
match x.as_mut() {
Some(v) => *v = 42,
None => {},
}
assert_eq!(x, Some(42));
1.33.0 (const: 1.84.0) · Sourcepub const fn as_pin_mut(self: Pin<&mut Option<T>>) -> Option<Pin<&mut T>> ⓘ
pub const fn as_pin_mut(self: Pin<&mut Option<T>>) -> Option<Pin<&mut T>> ⓘ
1.75.0 (const: 1.84.0) · Sourcepub const fn as_slice(&self) -> &[T] ⓘ
pub const fn as_slice(&self) -> &[T] ⓘ
Returns a slice of the contained value, if any. If this is None
, an
empty slice is returned. This can be useful to have a single type of
iterator over an Option
or slice.
Note: Should you have an Option<&T>
and wish to get a slice of T
,
you can unpack it via opt.map_or(&[], std::slice::from_ref)
.
§Examples
assert_eq!(
[Some(1234).as_slice(), None.as_slice()],
[&[1234][..], &[][..]],
);
The inverse of this function is (discounting
borrowing) [_]::first
:
for i in [Some(1234_u16), None] {
assert_eq!(i.as_ref(), i.as_slice().first());
}
1.75.0 (const: 1.84.0) · Sourcepub const fn as_mut_slice(&mut self) -> &mut [T] ⓘ
pub const fn as_mut_slice(&mut self) -> &mut [T] ⓘ
Returns a mutable slice of the contained value, if any. If this is
None
, an empty slice is returned. This can be useful to have a
single type of iterator over an Option
or slice.
Note: Should you have an Option<&mut T>
instead of a
&mut Option<T>
, which this method takes, you can obtain a mutable
slice via opt.map_or(&mut [], std::slice::from_mut)
.
§Examples
assert_eq!(
[Some(1234).as_mut_slice(), None.as_mut_slice()],
[&mut [1234][..], &mut [][..]],
);
The result is a mutable slice of zero or one items that points into
our original Option
:
let mut x = Some(1234);
x.as_mut_slice()[0] += 1;
assert_eq!(x, Some(1235));
The inverse of this method (discounting borrowing)
is [_]::first_mut
:
assert_eq!(Some(123).as_mut_slice().first_mut(), Some(&mut 123))
1.0.0 (const: 1.83.0) · Sourcepub const fn expect(self, msg: &str) -> T
pub const fn expect(self, msg: &str) -> T
Returns 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");
let x: Option<&str> = None;
x.expect("fruits are healthy"); // panics with `fruits are healthy`
§Recommended Message Style
We recommend that expect
messages are used to describe the reason you
expect the Option
should be Some
.
let item = slice.get(0)
.expect("slice should not be empty");
Hint: If you’re having trouble remembering how to phrase expect error messages remember to focus on the word “should” as in “env variable should be set by blah” or “the given binary should be available and executable by the current user”.
For more detail on expect message styles and the reasoning behind our
recommendation please refer to the section on “Common Message
Styles” in the std::error
module docs.
1.0.0 (const: 1.83.0) · Sourcepub const fn unwrap(self) -> T
pub const fn unwrap(self) -> T
Returns the contained Some
value, consuming the self
value.
Because this function may panic, its use is generally discouraged. Panics are meant for unrecoverable errors, and may abort the entire program.
Instead, prefer to use pattern matching and handle the None
case explicitly, or call unwrap_or
, unwrap_or_else
, or
unwrap_or_default
. In functions returning Option
, you can use
the ?
(try) operator.
§Panics
Panics if the self value equals None
.
§Examples
let x = Some("air");
assert_eq!(x.unwrap(), "air");
let x: Option<&str> = None;
assert_eq!(x.unwrap(), "air"); // fails
1.0.0 · Sourcepub fn unwrap_or(self, default: T) -> T
pub fn unwrap_or(self, default: T) -> T
Returns 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");
1.0.0 · Sourcepub fn unwrap_or_else<F>(self, f: F) -> Twhere
F: FnOnce() -> T,
pub fn unwrap_or_else<F>(self, f: F) -> Twhere
F: FnOnce() -> T,
1.0.0 · Sourcepub fn unwrap_or_default(self) -> Twhere
T: Default,
pub fn unwrap_or_default(self) -> Twhere
T: Default,
Returns 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
let x: Option<u32> = None;
let y: Option<u32> = Some(12);
assert_eq!(x.unwrap_or_default(), 0);
assert_eq!(y.unwrap_or_default(), 12);
1.58.0 (const: 1.83.0) · Sourcepub const unsafe fn unwrap_unchecked(self) -> T
pub const unsafe fn unwrap_unchecked(self) -> T
Returns 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");
let x: Option<&str> = None;
assert_eq!(unsafe { x.unwrap_unchecked() }, "air"); // Undefined behavior!
1.0.0 · Sourcepub fn map<U, F>(self, f: F) -> Option<U> ⓘwhere
F: FnOnce(T) -> U,
pub fn map<U, F>(self, f: F) -> Option<U> ⓘwhere
F: FnOnce(T) -> U,
Maps an Option<T>
to Option<U>
by applying a function to a contained value (if Some
) or returns None
(if None
).
§Examples
Calculates the length of an Option<String>
as 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));
let x: Option<&str> = None;
assert_eq!(x.map(|s| s.len()), None);
1.76.0 · Sourcepub fn inspect<F>(self, f: F) -> Option<T> ⓘ
pub fn inspect<F>(self, f: F) -> Option<T> ⓘ
Calls a function with a reference to the contained value if Some
.
Returns the original option.
§Examples
let list = vec![1, 2, 3];
// prints "got: 2"
let x = list
.get(1)
.inspect(|x| println!("got: {x}"))
.expect("list should be long enough");
// prints nothing
list.get(5).inspect(|x| println!("got: {x}"));
1.0.0 · Sourcepub fn map_or<U, F>(self, default: U, f: F) -> Uwhere
F: FnOnce(T) -> U,
pub fn map_or<U, F>(self, default: U, f: F) -> Uwhere
F: FnOnce(T) -> U,
Returns 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);
1.0.0 · Sourcepub fn map_or_else<U, D, F>(self, default: D, f: F) -> U
pub fn map_or_else<U, D, F>(self, default: D, f: F) -> U
Computes a default function result (if none), or applies a different function to the contained value (if any).
§Basic examples
let k = 21;
let x = Some("foo");
assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 3);
let x: Option<&str> = None;
assert_eq!(x.map_or_else(|| 2 * k, |v| v.len()), 42);
§Handling a Result-based fallback
A somewhat common occurrence when dealing with optional values
in combination with Result<T, E>
is the case where one wants to invoke
a fallible fallback if the option is not present. This example
parses a command line argument (if present), or the contents of a file to
an integer. However, unlike accessing the command line argument, reading
the file is fallible, so it must be wrapped with Ok
.
let v: u64 = std::env::args()
.nth(1)
.map_or_else(|| std::fs::read_to_string("/etc/someconfig.conf"), Ok)?
.parse()?;
1.0.0 · Sourcepub fn ok_or<E>(self, err: E) -> Result<T, E> ⓘ
pub fn ok_or<E>(self, err: E) -> Result<T, E> ⓘ
Transforms 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));
1.0.0 · Sourcepub fn ok_or_else<E, F>(self, err: F) -> Result<T, E> ⓘwhere
F: FnOnce() -> E,
pub fn ok_or_else<E, F>(self, err: F) -> Result<T, E> ⓘwhere
F: FnOnce() -> E,
Transforms 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));
1.40.0 · Sourcepub fn as_deref(&self) -> Option<&<T as Deref>::Target> ⓘwhere
T: Deref,
pub fn as_deref(&self) -> Option<&<T as Deref>::Target> ⓘwhere
T: Deref,
Converts 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);
1.40.0 · Sourcepub fn as_deref_mut(&mut self) -> Option<&mut <T as Deref>::Target> ⓘwhere
T: DerefMut,
pub fn as_deref_mut(&mut self) -> Option<&mut <T as Deref>::Target> ⓘwhere
T: DerefMut,
Converts 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()));
1.0.0 · Sourcepub fn iter(&self) -> Iter<'_, T> ⓘ
pub fn iter(&self) -> Iter<'_, T> ⓘ
Returns an iterator over the possibly contained value.
§Examples
let x = Some(4);
assert_eq!(x.iter().next(), Some(&4));
let x: Option<u32> = None;
assert_eq!(x.iter().next(), None);
1.0.0 · Sourcepub fn iter_mut(&mut self) -> IterMut<'_, T> ⓘ
pub fn iter_mut(&mut self) -> IterMut<'_, T> ⓘ
Returns a mutable iterator over the possibly contained value.
§Examples
let mut x = Some(4);
match x.iter_mut().next() {
Some(v) => *v = 42,
None => {},
}
assert_eq!(x, Some(42));
let mut x: Option<u32> = None;
assert_eq!(x.iter_mut().next(), None);
1.0.0 · Sourcepub fn and<U>(self, optb: Option<U>) -> Option<U> ⓘ
pub fn and<U>(self, optb: Option<U>) -> Option<U> ⓘ
Returns None
if the option is None
, otherwise returns optb
.
Arguments passed to and
are eagerly evaluated; if you are passing the
result of a function call, it is recommended to use and_then
, which is
lazily evaluated.
§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);
1.0.0 · Sourcepub fn and_then<U, F>(self, f: F) -> Option<U> ⓘ
pub fn and_then<U, F>(self, f: F) -> Option<U> ⓘ
Returns 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);
Often 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);
1.27.0 · Sourcepub fn filter<P>(self, predicate: P) -> Option<T> ⓘ
pub fn filter<P>(self, predicate: P) -> Option<T> ⓘ
Returns None
if the option is None
, otherwise calls predicate
with the wrapped value and returns:
Some(t)
ifpredicate
returnstrue
(wheret
is the wrapped value), andNone
ifpredicate
returnsfalse
.
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));
1.0.0 · Sourcepub fn or(self, optb: Option<T>) -> Option<T> ⓘ
pub fn or(self, optb: Option<T>) -> Option<T> ⓘ
Returns 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);
1.0.0 · Sourcepub fn or_else<F>(self, f: F) -> Option<T> ⓘ
pub fn or_else<F>(self, f: F) -> Option<T> ⓘ
Returns 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);
1.37.0 · Sourcepub fn xor(self, optb: Option<T>) -> Option<T> ⓘ
pub fn xor(self, optb: Option<T>) -> Option<T> ⓘ
Returns 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);
1.53.0 · Sourcepub fn insert(&mut self, value: T) -> &mut T
pub fn insert(&mut self, value: T) -> &mut T
Inserts 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);
1.20.0 · Sourcepub fn get_or_insert(&mut self, value: T) -> &mut T
pub fn get_or_insert(&mut self, value: T) -> &mut T
Inserts 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));
1.83.0 · Sourcepub fn get_or_insert_default(&mut self) -> &mut Twhere
T: Default,
pub fn get_or_insert_default(&mut self) -> &mut Twhere
T: Default,
1.20.0 · Sourcepub fn get_or_insert_with<F>(&mut self, f: F) -> &mut Twhere
F: FnOnce() -> T,
pub fn get_or_insert_with<F>(&mut self, f: F) -> &mut Twhere
F: FnOnce() -> T,
1.80.0 · Sourcepub fn take_if<P>(&mut self, predicate: P) -> Option<T> ⓘ
pub fn take_if<P>(&mut self, predicate: P) -> Option<T> ⓘ
Takes the value out of the option, but only if the predicate evaluates to
true
on a mutable reference to the value.
In other words, replaces self
with None
if the predicate returns true
.
This method operates similar to Option::take
but conditional.
§Examples
let mut x = Some(42);
let prev = x.take_if(|v| if *v == 42 {
*v += 1;
false
} else {
false
});
assert_eq!(x, Some(43));
assert_eq!(prev, None);
let prev = x.take_if(|v| *v == 43);
assert_eq!(x, None);
assert_eq!(prev, Some(43));
1.31.0 (const: 1.83.0) · Sourcepub const fn replace(&mut self, value: T) -> Option<T> ⓘ
pub const fn replace(&mut self, value: T) -> Option<T> ⓘ
Replaces 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);
1.46.0 · Sourcepub fn zip<U>(self, other: Option<U>) -> Option<(T, U)> ⓘ
pub fn zip<U>(self, other: Option<U>) -> Option<(T, U)> ⓘ
Zips self
with another Option
.
If self
is Some(s)
and other
is Some(o)
, this method returns Some((s, o))
.
Otherwise, None
is returned.
§Examples
let x = Some(1);
let y = Some("hi");
let z = None::<u8>;
assert_eq!(x.zip(y), Some((1, "hi")));
assert_eq!(x.zip(z), None);
Sourcepub fn zip_with<U, F, R>(self, other: Option<U>, f: F) -> Option<R> ⓘwhere
F: FnOnce(T, U) -> R,
🔬This is a nightly-only experimental API. (option_zip
)
pub fn zip_with<U, F, R>(self, other: Option<U>, f: F) -> Option<R> ⓘwhere
F: FnOnce(T, U) -> R,
option_zip
)Zips 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);
Source§impl<T, U> Option<(T, U)>
impl<T, U> Option<(T, U)>
1.66.0 · Sourcepub fn unzip(self) -> (Option<T>, Option<U>) ⓘ
pub fn unzip(self) -> (Option<T>, Option<U>) ⓘ
Unzips 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
let x = Some((1, "hi"));
let y = None::<(u8, u32)>;
assert_eq!(x.unzip(), (Some(1), Some("hi")));
assert_eq!(y.unzip(), (None, None));
Source§impl<T> Option<&T>
impl<T> Option<&T>
Source§impl<T> Option<&mut T>
impl<T> Option<&mut T>
1.35.0 (const: 1.83.0) · Sourcepub const fn copied(self) -> Option<T> ⓘwhere
T: Copy,
pub const fn copied(self) -> Option<T> ⓘwhere
T: Copy,
Maps an Option<&mut T>
to an Option<T>
by copying the contents of the
option.
§Examples
let mut x = 12;
let opt_x = Some(&mut x);
assert_eq!(opt_x, Some(&mut 12));
let copied = opt_x.copied();
assert_eq!(copied, Some(12));
Source§impl<T, E> Option<Result<T, E>>
impl<T, E> Option<Result<T, E>>
1.33.0 (const: 1.83.0) · Sourcepub const fn transpose(self) -> Result<Option<T>, E> ⓘ
pub const fn transpose(self) -> Result<Option<T>, E> ⓘ
Transposes 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());
Source§impl<T> Option<Option<T>>
impl<T> Option<Option<T>>
1.40.0 (const: 1.83.0) · Sourcepub const fn flatten(self) -> Option<T> ⓘ
pub const fn flatten(self) -> Option<T> ⓘ
Converts 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());
Flattening 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());
Trait Implementations§
§impl<T> Archive for Option<T>where
T: Archive,
impl<T> Archive for Option<T>where
T: Archive,
§type Archived = ArchivedOption<<T as Archive>::Archived>
type Archived = ArchivedOption<<T as Archive>::Archived>
§type Resolver = Option<<T as Archive>::Resolver>
type Resolver = Option<<T as Archive>::Resolver>
§fn resolve(
&self,
resolver: <Option<T> as Archive>::Resolver,
out: Place<<Option<T> as Archive>::Archived>,
)
fn resolve( &self, resolver: <Option<T> as Archive>::Resolver, out: Place<<Option<T> as Archive>::Archived>, )
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
serialize
. Read more§impl<T> ArchiveWith<Option<Box<T>>> for Nichewhere
T: ArchiveUnsized + ?Sized,
<<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata: Default,
impl<T> ArchiveWith<Option<Box<T>>> for Nichewhere
T: ArchiveUnsized + ?Sized,
<<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata: Default,
§type Archived = ArchivedOptionBox<<T as ArchiveUnsized>::Archived>
type Archived = ArchivedOptionBox<<T as ArchiveUnsized>::Archived>
Self
with F
.§type Resolver = OptionBoxResolver
type Resolver = OptionBoxResolver
Self
with F
.§fn resolve_with(
field: &Option<Box<T>>,
resolver: <Niche as ArchiveWith<Option<Box<T>>>>::Resolver,
out: Place<<Niche as ArchiveWith<Option<Box<T>>>>::Archived>,
)
fn resolve_with( field: &Option<Box<T>>, resolver: <Niche as ArchiveWith<Option<Box<T>>>>::Resolver, out: Place<<Niche as ArchiveWith<Option<Box<T>>>>::Archived>, )
F
.§impl ArchiveWith<Option<NonZero<i128>>> for Niche
impl ArchiveWith<Option<NonZero<i128>>> for Niche
§type Archived = ArchivedOptionNonZeroI128
type Archived = ArchivedOptionNonZeroI128
Self
with F
.§impl ArchiveWith<Option<NonZero<i16>>> for Niche
impl ArchiveWith<Option<NonZero<i16>>> for Niche
§type Archived = ArchivedOptionNonZeroI16
type Archived = ArchivedOptionNonZeroI16
Self
with F
.§impl ArchiveWith<Option<NonZero<i32>>> for Niche
impl ArchiveWith<Option<NonZero<i32>>> for Niche
§type Archived = ArchivedOptionNonZeroI32
type Archived = ArchivedOptionNonZeroI32
Self
with F
.§impl ArchiveWith<Option<NonZero<i64>>> for Niche
impl ArchiveWith<Option<NonZero<i64>>> for Niche
§type Archived = ArchivedOptionNonZeroI64
type Archived = ArchivedOptionNonZeroI64
Self
with F
.§impl ArchiveWith<Option<NonZero<i8>>> for Niche
impl ArchiveWith<Option<NonZero<i8>>> for Niche
§type Archived = ArchivedOptionNonZeroI8
type Archived = ArchivedOptionNonZeroI8
Self
with F
.§impl ArchiveWith<Option<NonZero<isize>>> for Niche
impl ArchiveWith<Option<NonZero<isize>>> for Niche
§type Archived = ArchivedOptionNonZeroI32
type Archived = ArchivedOptionNonZeroI32
Self
with F
.§impl ArchiveWith<Option<NonZero<u128>>> for Niche
impl ArchiveWith<Option<NonZero<u128>>> for Niche
§type Archived = ArchivedOptionNonZeroU128
type Archived = ArchivedOptionNonZeroU128
Self
with F
.§impl ArchiveWith<Option<NonZero<u16>>> for Niche
impl ArchiveWith<Option<NonZero<u16>>> for Niche
§type Archived = ArchivedOptionNonZeroU16
type Archived = ArchivedOptionNonZeroU16
Self
with F
.§impl ArchiveWith<Option<NonZero<u32>>> for Niche
impl ArchiveWith<Option<NonZero<u32>>> for Niche
§type Archived = ArchivedOptionNonZeroU32
type Archived = ArchivedOptionNonZeroU32
Self
with F
.§impl ArchiveWith<Option<NonZero<u64>>> for Niche
impl ArchiveWith<Option<NonZero<u64>>> for Niche
§type Archived = ArchivedOptionNonZeroU64
type Archived = ArchivedOptionNonZeroU64
Self
with F
.§impl ArchiveWith<Option<NonZero<u8>>> for Niche
impl ArchiveWith<Option<NonZero<u8>>> for Niche
§type Archived = ArchivedOptionNonZeroU8
type Archived = ArchivedOptionNonZeroU8
Self
with F
.§impl ArchiveWith<Option<NonZero<usize>>> for Niche
impl ArchiveWith<Option<NonZero<usize>>> for Niche
§type Archived = ArchivedOptionNonZeroU32
type Archived = ArchivedOptionNonZeroU32
Self
with F
.§impl<A, O> ArchiveWith<Option<O>> for Map<A>where
A: ArchiveWith<O>,
impl<A, O> ArchiveWith<Option<O>> for Map<A>where
A: ArchiveWith<O>,
§type Archived = ArchivedOption<<A as ArchiveWith<O>>::Archived>
type Archived = ArchivedOption<<A as ArchiveWith<O>>::Archived>
Self
with F
.§type Resolver = Option<<A as ArchiveWith<O>>::Resolver>
type Resolver = Option<<A as ArchiveWith<O>>::Resolver>
Self
with F
.§fn resolve_with(
field: &Option<O>,
resolver: <Map<A> as ArchiveWith<Option<O>>>::Resolver,
out: Place<<Map<A> as ArchiveWith<Option<O>>>::Archived>,
)
fn resolve_with( field: &Option<O>, resolver: <Map<A> as ArchiveWith<Option<O>>>::Resolver, out: Place<<Map<A> as ArchiveWith<Option<O>>>::Archived>, )
F
.§impl<T> ArchiveWith<Option<T>> for DefaultNiche
impl<T> ArchiveWith<Option<T>> for DefaultNiche
§type Archived = NichedOption<<T as Archive>::Archived, DefaultNiche>
type Archived = NichedOption<<T as Archive>::Archived, DefaultNiche>
Self
with F
.§fn resolve_with(
field: &Option<T>,
resolver: <DefaultNiche as ArchiveWith<Option<T>>>::Resolver,
out: Place<<DefaultNiche as ArchiveWith<Option<T>>>::Archived>,
)
fn resolve_with( field: &Option<T>, resolver: <DefaultNiche as ArchiveWith<Option<T>>>::Resolver, out: Place<<DefaultNiche as ArchiveWith<Option<T>>>::Archived>, )
F
.§impl<T, W, N> ArchiveWith<Option<T>> for MapNiche<W, N>
impl<T, W, N> ArchiveWith<Option<T>> for MapNiche<W, N>
§type Archived = NichedOption<<W as ArchiveWith<T>>::Archived, N>
type Archived = NichedOption<<W as ArchiveWith<T>>::Archived, N>
Self
with F
.§type Resolver = Option<<W as ArchiveWith<T>>::Resolver>
type Resolver = Option<<W as ArchiveWith<T>>::Resolver>
Self
with F
.§fn resolve_with(
field: &Option<T>,
resolver: <MapNiche<W, N> as ArchiveWith<Option<T>>>::Resolver,
out: Place<<MapNiche<W, N> as ArchiveWith<Option<T>>>::Archived>,
)
fn resolve_with( field: &Option<T>, resolver: <MapNiche<W, N> as ArchiveWith<Option<T>>>::Resolver, out: Place<<MapNiche<W, N> as ArchiveWith<Option<T>>>::Archived>, )
F
.§impl<T, N> ArchiveWith<Option<T>> for NicheInto<N>
impl<T, N> ArchiveWith<Option<T>> for NicheInto<N>
§type Archived = NichedOption<<T as Archive>::Archived, N>
type Archived = NichedOption<<T as Archive>::Archived, N>
Self
with F
.§fn resolve_with(
field: &Option<T>,
resolver: <NicheInto<N> as ArchiveWith<Option<T>>>::Resolver,
out: Place<<NicheInto<N> as ArchiveWith<Option<T>>>::Archived>,
)
fn resolve_with( field: &Option<T>, resolver: <NicheInto<N> as ArchiveWith<Option<T>>>::Resolver, out: Place<<NicheInto<N> as ArchiveWith<Option<T>>>::Archived>, )
F
.§impl<T> AsPyPointer for Option<T>where
T: AsPyPointer,
Convert None
into a null pointer.
impl<T> AsPyPointer for Option<T>where
T: AsPyPointer,
Convert None
into a null pointer.
Source§impl<T: ConstDefault> ConstDefault for Option<T>
impl<T: ConstDefault> ConstDefault for Option<T>
Source§impl<'de, T> Deserialize<'de> for Option<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Option<T>where
T: Deserialize<'de>,
Source§fn deserialize<D>(
deserializer: D,
) -> Result<Option<T>, <D as Deserializer<'de>>::Error> ⓘwhere
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Option<T>, <D as Deserializer<'de>>::Error> ⓘwhere
D: Deserializer<'de>,
§impl<T, D> Deserialize<Option<T>, D> for ArchivedOption<<T as Archive>::Archived>
impl<T, D> Deserialize<Option<T>, D> for ArchivedOption<<T as Archive>::Archived>
§impl<T, N, D> Deserialize<Option<T>, D> for NichedOption<<T as Archive>::Archived, N>
impl<T, N, D> Deserialize<Option<T>, D> for NichedOption<<T as Archive>::Archived, N>
§impl<A, O, D> DeserializeWith<ArchivedOption<<A as ArchiveWith<O>>::Archived>, Option<O>, D> for Map<A>where
D: Fallible + ?Sized,
A: ArchiveWith<O> + DeserializeWith<<A as ArchiveWith<O>>::Archived, O, D>,
impl<A, O, D> DeserializeWith<ArchivedOption<<A as ArchiveWith<O>>::Archived>, Option<O>, D> for Map<A>where
D: Fallible + ?Sized,
A: ArchiveWith<O> + DeserializeWith<<A as ArchiveWith<O>>::Archived, O, D>,
§fn deserialize_with(
field: &ArchivedOption<<A as ArchiveWith<O>>::Archived>,
d: &mut D,
) -> Result<Option<O>, <D as Fallible>::Error> ⓘ
fn deserialize_with( field: &ArchivedOption<<A as ArchiveWith<O>>::Archived>, d: &mut D, ) -> Result<Option<O>, <D as Fallible>::Error> ⓘ
F
using the given deserializer.§impl<T, D> DeserializeWith<ArchivedOptionBox<<T as ArchiveUnsized>::Archived>, Option<Box<T>>, D> for Nichewhere
T: ArchiveUnsized + LayoutRaw + Pointee + ?Sized,
<T as ArchiveUnsized>::Archived: DeserializeUnsized<T, D>,
D: Fallible + ?Sized,
<D as Fallible>::Error: Source,
impl<T, D> DeserializeWith<ArchivedOptionBox<<T as ArchiveUnsized>::Archived>, Option<Box<T>>, D> for Nichewhere
T: ArchiveUnsized + LayoutRaw + Pointee + ?Sized,
<T as ArchiveUnsized>::Archived: DeserializeUnsized<T, D>,
D: Fallible + ?Sized,
<D as Fallible>::Error: Source,
§fn deserialize_with(
field: &ArchivedOptionBox<<T as ArchiveUnsized>::Archived>,
deserializer: &mut D,
) -> Result<Option<Box<T>>, <D as Fallible>::Error> ⓘ
fn deserialize_with( field: &ArchivedOptionBox<<T as ArchiveUnsized>::Archived>, deserializer: &mut D, ) -> Result<Option<Box<T>>, <D as Fallible>::Error> ⓘ
F
using the given deserializer.§impl<D> DeserializeWith<ArchivedOptionNonZeroI128, Option<NonZero<i128>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroI128, Option<NonZero<i128>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroI16, Option<NonZero<i16>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroI16, Option<NonZero<i16>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroI32, Option<NonZero<i32>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroI32, Option<NonZero<i32>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroI32, Option<NonZero<isize>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroI32, Option<NonZero<isize>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroI64, Option<NonZero<i64>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroI64, Option<NonZero<i64>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroI8, Option<NonZero<i8>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroI8, Option<NonZero<i8>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroU128, Option<NonZero<u128>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroU128, Option<NonZero<u128>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroU16, Option<NonZero<u16>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroU16, Option<NonZero<u16>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroU32, Option<NonZero<u32>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroU32, Option<NonZero<u32>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroU32, Option<NonZero<usize>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroU32, Option<NonZero<usize>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroU64, Option<NonZero<u64>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroU64, Option<NonZero<u64>>, D> for Niche
§impl<D> DeserializeWith<ArchivedOptionNonZeroU8, Option<NonZero<u8>>, D> for Niche
impl<D> DeserializeWith<ArchivedOptionNonZeroU8, Option<NonZero<u8>>, D> for Niche
§impl<T, D> DeserializeWith<NichedOption<<T as Archive>::Archived, DefaultNiche>, Option<T>, D> for DefaultNichewhere
T: Archive,
<T as Archive>::Archived: Deserialize<T, D>,
DefaultNiche: Niching<<T as Archive>::Archived>,
D: Fallible + ?Sized,
impl<T, D> DeserializeWith<NichedOption<<T as Archive>::Archived, DefaultNiche>, Option<T>, D> for DefaultNichewhere
T: Archive,
<T as Archive>::Archived: Deserialize<T, D>,
DefaultNiche: Niching<<T as Archive>::Archived>,
D: Fallible + ?Sized,
§fn deserialize_with(
field: &NichedOption<<T as Archive>::Archived, DefaultNiche>,
deserializer: &mut D,
) -> Result<Option<T>, <D as Fallible>::Error> ⓘ
fn deserialize_with( field: &NichedOption<<T as Archive>::Archived, DefaultNiche>, deserializer: &mut D, ) -> Result<Option<T>, <D as Fallible>::Error> ⓘ
F
using the given deserializer.§impl<T, N, D> DeserializeWith<NichedOption<<T as Archive>::Archived, N>, Option<T>, D> for NicheInto<N>
impl<T, N, D> DeserializeWith<NichedOption<<T as Archive>::Archived, N>, Option<T>, D> for NicheInto<N>
§impl<T, W, N, D> DeserializeWith<NichedOption<<W as ArchiveWith<T>>::Archived, N>, Option<T>, D> for MapNiche<W, N>where
W: ArchiveWith<T> + DeserializeWith<<W as ArchiveWith<T>>::Archived, T, D>,
N: Niching<<W as ArchiveWith<T>>::Archived> + ?Sized,
D: Fallible + ?Sized,
impl<T, W, N, D> DeserializeWith<NichedOption<<W as ArchiveWith<T>>::Archived, N>, Option<T>, D> for MapNiche<W, N>where
W: ArchiveWith<T> + DeserializeWith<<W as ArchiveWith<T>>::Archived, T, D>,
N: Niching<<W as ArchiveWith<T>>::Archived> + ?Sized,
D: Fallible + ?Sized,
§fn deserialize_with(
field: &NichedOption<<W as ArchiveWith<T>>::Archived, N>,
deserializer: &mut D,
) -> Result<Option<T>, <D as Fallible>::Error> ⓘ
fn deserialize_with( field: &NichedOption<<W as ArchiveWith<T>>::Archived, N>, deserializer: &mut D, ) -> Result<Option<T>, <D as Fallible>::Error> ⓘ
F
using the given deserializer.Source§impl<T> ExtOption<T> for Option<T>
impl<T> ExtOption<T> for Option<T>
Source§fn fmt_or_empty(&self) -> OptionFmt<'_, T>
fn fmt_or_empty(&self) -> OptionFmt<'_, T>
None
. Read moreSource§fn fmt_or<U: Display>(&self, u: U) -> OptionFmtOr<'_, T, U>
fn fmt_or<U: Display>(&self, u: U) -> OptionFmtOr<'_, T, U>
None
. Read moreSource§fn fmt_or_else<U: Display, F: Fn() -> U>(
&self,
f: F,
) -> OptionFmtOrElse<'_, T, F>
fn fmt_or_else<U: Display, F: Fn() -> U>( &self, f: F, ) -> OptionFmtOrElse<'_, T, F>
None
. Read more§impl<'a> From<&'a EnteredSpan> for Option<&'a Id>
impl<'a> From<&'a EnteredSpan> for Option<&'a Id>
§impl<'a> From<&'a EnteredSpan> for Option<Id>
impl<'a> From<&'a EnteredSpan> for Option<Id>
1.30.0 · Source§impl<'a, T> From<&'a Option<T>> for Option<&'a T>
impl<'a, T> From<&'a Option<T>> for Option<&'a T>
Source§fn from(o: &'a Option<T>) -> Option<&'a T> ⓘ
fn from(o: &'a Option<T>) -> Option<&'a T> ⓘ
Converts 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));
1.30.0 · Source§impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T>
impl<'a, T> From<&'a mut Option<T>> for Option<&'a mut T>
Source§fn from(o: &'a mut Option<T>) -> Option<&'a mut T> ⓘ
fn from(o: &'a mut Option<T>) -> Option<&'a mut T> ⓘ
Converts from &mut Option<T>
to Option<&mut T>
§Examples
let mut s = Some(String::from("Hello"));
let o: Option<&mut String> = Option::from(&mut s);
match o {
Some(t) => *t = String::from("Hello, Rustaceans!"),
None => (),
}
assert_eq!(s, Some(String::from("Hello, Rustaceans!")));
§impl From<LevelFilter> for Option<Level>
impl From<LevelFilter> for Option<Level>
§impl From<Option<Level>> for LevelFilter
impl From<Option<Level>> for LevelFilter
§fn from(level: Option<Level>) -> LevelFilter
fn from(level: Option<Level>) -> LevelFilter
1.0.0 · Source§impl<A, V> FromIterator<Option<A>> for Option<V>where
V: FromIterator<A>,
impl<A, V> FromIterator<Option<A>> for Option<V>where
V: FromIterator<A>,
Source§fn from_iter<I>(iter: I) -> Option<V> ⓘwhere
I: IntoIterator<Item = Option<A>>,
fn from_iter<I>(iter: I) -> Option<V> ⓘwhere
I: IntoIterator<Item = Option<A>>,
Takes 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]));
As 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);
Since 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);
Since 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, V> FromIteratorIn<Option<T>> for Option<V>where
V: FromIteratorIn<T>,
impl<T, V> FromIteratorIn<Option<T>> for Option<V>where
V: FromIteratorIn<T>,
§type Alloc = <V as FromIteratorIn<T>>::Alloc
type Alloc = <V as FromIteratorIn<T>>::Alloc
§fn from_iter_in<I>(
iter: I,
alloc: <Option<V> as FromIteratorIn<Option<T>>>::Alloc,
) -> Option<V> ⓘwhere
I: IntoIterator<Item = Option<T>>,
fn from_iter_in<I>(
iter: I,
alloc: <Option<V> as FromIteratorIn<Option<T>>>::Alloc,
) -> Option<V> ⓘwhere
I: IntoIterator<Item = Option<T>>,
FromIterator::from_iter
, but with a given allocator. Read more§impl<C, T> FromParallelIterator<Option<T>> for Option<C>where
C: FromParallelIterator<T>,
T: Send,
Collect an arbitrary Option
-wrapped collection.
impl<C, T> FromParallelIterator<Option<T>> for Option<C>where
C: FromParallelIterator<T>,
T: Send,
Collect an arbitrary Option
-wrapped collection.
If any item is None
, then all previous items collected are discarded,
and it returns only None
.
§fn from_par_iter<I>(par_iter: I) -> Option<C> ⓘwhere
I: IntoParallelIterator<Item = Option<T>>,
fn from_par_iter<I>(par_iter: I) -> Option<C> ⓘwhere
I: IntoParallelIterator<Item = Option<T>>,
par_iter
. Read more§impl<'py, T> FromPyObject<'py> for Option<T>where
T: FromPyObject<'py>,
impl<'py, T> FromPyObject<'py> for Option<T>where
T: FromPyObject<'py>,
Source§impl<T> FromResidual<Option<Infallible>> for Option<T>
impl<T> FromResidual<Option<Infallible>> for Option<T>
Source§fn from_residual(residual: Option<Infallible>) -> Option<T> ⓘ
fn from_residual(residual: Option<Infallible>) -> Option<T> ⓘ
try_trait_v2
)Residual
type. Read moreSource§impl<T> FromWasmAbi for Option<*const T>
impl<T> FromWasmAbi for Option<*const T>
Source§impl<T> FromWasmAbi for Option<*mut T>
impl<T> FromWasmAbi for Option<*mut T>
Source§impl<T> FromWasmAbi for Option<T>where
T: OptionFromWasmAbi,
impl<T> FromWasmAbi for Option<T>where
T: OptionFromWasmAbi,
Source§impl FromWasmAbi for Option<f32>
impl FromWasmAbi for Option<f32>
Source§impl FromWasmAbi for Option<f64>
impl FromWasmAbi for Option<f64>
Source§impl FromWasmAbi for Option<i128>
impl FromWasmAbi for Option<i128>
Source§impl FromWasmAbi for Option<i32>
impl FromWasmAbi for Option<i32>
Source§impl FromWasmAbi for Option<i64>
impl FromWasmAbi for Option<i64>
Source§impl FromWasmAbi for Option<isize>
impl FromWasmAbi for Option<isize>
Source§impl FromWasmAbi for Option<u128>
impl FromWasmAbi for Option<u128>
Source§impl FromWasmAbi for Option<u32>
impl FromWasmAbi for Option<u32>
Source§impl FromWasmAbi for Option<u64>
impl FromWasmAbi for Option<u64>
Source§impl FromWasmAbi for Option<usize>
impl FromWasmAbi for Option<usize>
1.4.0 · Source§impl<'a, T> IntoIterator for &'a Option<T>
impl<'a, T> IntoIterator for &'a Option<T>
1.4.0 · Source§impl<'a, T> IntoIterator for &'a mut Option<T>
impl<'a, T> IntoIterator for &'a mut Option<T>
1.0.0 · Source§impl<T> IntoIterator for Option<T>
impl<T> IntoIterator for Option<T>
§impl IntoOptionalRegion for Option<Region>
impl IntoOptionalRegion for Option<Region>
§fn into_optional_region(self) -> Option<Region> ⓘ
fn into_optional_region(self) -> Option<Region> ⓘ
Option<Region>
.§impl<'a, T> IntoParallelIterator for &'a Option<T>where
T: Sync,
impl<'a, T> IntoParallelIterator for &'a Option<T>where
T: Sync,
§impl<'a, T> IntoParallelIterator for &'a mut Option<T>where
T: Send,
impl<'a, T> IntoParallelIterator for &'a mut Option<T>where
T: Send,
§impl<T> IntoParallelIterator for Option<T>where
T: Send,
impl<T> IntoParallelIterator for Option<T>where
T: Send,
§impl<'a, 'py, T> IntoPyObject<'py> for &'a Option<T>where
&'a T: IntoPyObject<'py>,
impl<'a, 'py, T> IntoPyObject<'py> for &'a Option<T>where
&'a T: IntoPyObject<'py>,
§type Output = Bound<'py, <&'a Option<T> as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <&'a Option<T> as IntoPyObject<'py>>::Target>
§type Error = <&'a T as IntoPyObject<'py>>::Error
type Error = <&'a T as IntoPyObject<'py>>::Error
§fn into_pyobject(
self,
py: Python<'py>,
) -> Result<<&'a Option<T> as IntoPyObject<'py>>::Output, <&'a Option<T> as IntoPyObject<'py>>::Error> ⓘ
fn into_pyobject( self, py: Python<'py>, ) -> Result<<&'a Option<T> as IntoPyObject<'py>>::Output, <&'a Option<T> as IntoPyObject<'py>>::Error> ⓘ
§impl<'py, T> IntoPyObject<'py> for Option<T>where
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObject<'py> for Option<T>where
T: IntoPyObject<'py>,
§type Output = Bound<'py, <Option<T> as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <Option<T> as IntoPyObject<'py>>::Target>
§type Error = <T as IntoPyObject<'py>>::Error
type Error = <T as IntoPyObject<'py>>::Error
§fn into_pyobject(
self,
py: Python<'py>,
) -> Result<<Option<T> as IntoPyObject<'py>>::Output, <Option<T> as IntoPyObject<'py>>::Error> ⓘ
fn into_pyobject( self, py: Python<'py>, ) -> Result<<Option<T> as IntoPyObject<'py>>::Output, <Option<T> as IntoPyObject<'py>>::Error> ⓘ
Source§impl<T> IntoWasmAbi for Option<*const T>
impl<T> IntoWasmAbi for Option<*const T>
Source§impl<T> IntoWasmAbi for Option<*mut T>
impl<T> IntoWasmAbi for Option<*mut T>
Source§impl<T> IntoWasmAbi for Option<T>where
T: OptionIntoWasmAbi,
impl<T> IntoWasmAbi for Option<T>where
T: OptionIntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Source§fn into_abi(self) -> <T as IntoWasmAbi>::Abi
fn into_abi(self) -> <T as IntoWasmAbi>::Abi
self
into Self::Abi
so that it can be sent across the wasm
ABI boundary.Source§impl IntoWasmAbi for Option<f32>
impl IntoWasmAbi for Option<f32>
Source§impl IntoWasmAbi for Option<f64>
impl IntoWasmAbi for Option<f64>
Source§impl IntoWasmAbi for Option<i128>
impl IntoWasmAbi for Option<i128>
Source§impl IntoWasmAbi for Option<i32>
impl IntoWasmAbi for Option<i32>
Source§impl IntoWasmAbi for Option<i64>
impl IntoWasmAbi for Option<i64>
Source§impl IntoWasmAbi for Option<isize>
impl IntoWasmAbi for Option<isize>
Source§impl IntoWasmAbi for Option<u128>
impl IntoWasmAbi for Option<u128>
Source§impl IntoWasmAbi for Option<u32>
impl IntoWasmAbi for Option<u32>
Source§impl IntoWasmAbi for Option<u64>
impl IntoWasmAbi for Option<u64>
Source§impl IntoWasmAbi for Option<usize>
impl IntoWasmAbi for Option<usize>
Source§impl MemPod for Option<NonZeroI128>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroI128>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroI16>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroI16>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroI32>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroI32>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroI64>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroI64>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroI8>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroI8>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroIsize>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroIsize>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroU128>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroU128>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroU16>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroU16>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroU32>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroU32>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroU64>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroU64>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroU8>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroU8>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl MemPod for Option<NonZeroUsize>
Available on crate feature unsafe_layout
only.
impl MemPod for Option<NonZeroUsize>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Source§impl<T: MemPod> MemPod for Option<T>
Available on crate feature unsafe_layout
only.
impl<T: MemPod> MemPod for Option<T>
unsafe_layout
only.Source§fn from_bytes(bytes: &[u8]) -> Self
fn from_bytes(bytes: &[u8]) -> Self
Source§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
§impl<T> OptionExt<T> for Option<T>
impl<T> OptionExt<T> for Option<T>
§fn into_error<E>(self) -> Result<T, E> ⓘwhere
E: Source,
fn into_error<E>(self) -> Result<T, E> ⓘwhere
E: Source,
§fn into_trace<E, R>(self, trace: R) -> Result<T, E> ⓘ
fn into_trace<E, R>(self, trace: R) -> Result<T, E> ⓘ
Result
with an error indicating that Some
was expected but
None
was found, and with an additional trace
message added. Read more§fn into_with_trace<E, R, F>(self, f: F) -> Result<T, E> ⓘ
fn into_with_trace<E, R, F>(self, f: F) -> Result<T, E> ⓘ
Result
with an error indicating that Some
was expected but
None
was found, and with an additional trace message added by
evaluating the given function f
. The function is evaluated only if an
error occurred. Read more1.0.0 · Source§impl<T> Ord for Option<T>where
T: Ord,
impl<T> Ord for Option<T>where
T: Ord,
§impl<T, U> PartialEq<Option<Box<T>>> for ArchivedOptionBox<U>
impl<T, U> PartialEq<Option<Box<T>>> for ArchivedOptionBox<U>
§impl<T, N, Rhs> PartialEq<Option<Rhs>> for NichedOption<T, N>
impl<T, N, Rhs> PartialEq<Option<Rhs>> for NichedOption<T, N>
§impl<T, U> PartialEq<Option<T>> for ArchivedOption<U>where
U: PartialEq<T>,
impl<T, U> PartialEq<Option<T>> for ArchivedOption<U>where
U: PartialEq<T>,
§impl<T, U> PartialOrd<Option<T>> for ArchivedOption<U>where
U: PartialOrd<T>,
impl<T, U> PartialOrd<Option<T>> for ArchivedOption<U>where
U: PartialOrd<T>,
1.0.0 · Source§impl<T> PartialOrd for Option<T>where
T: PartialOrd,
impl<T> PartialOrd for Option<T>where
T: PartialOrd,
1.37.0 · Source§impl<T, U> Product<Option<U>> for Option<T>where
T: Product<U>,
impl<T, U> Product<Option<U>> for Option<T>where
T: Product<U>,
Source§fn product<I>(iter: I) -> Option<T> ⓘ
fn product<I>(iter: I) -> Option<T> ⓘ
Takes 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 product of all elements is returned.
§Examples
This multiplies each number in a vector of strings,
if a string could not be parsed the operation returns None
:
let nums = vec!["5", "10", "1", "2"];
let total: Option<usize> = nums.iter().map(|w| w.parse::<usize>().ok()).product();
assert_eq!(total, Some(100));
let nums = vec!["5", "10", "one", "2"];
let total: Option<usize> = nums.iter().map(|w| w.parse::<usize>().ok()).product();
assert_eq!(total, None);
Source§impl<T> Residual<T> for Option<Infallible>
impl<T> Residual<T> for Option<Infallible>
Source§impl<T> Serialize for Option<T>where
T: Serialize,
impl<T> Serialize for Option<T>where
T: Serialize,
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> ⓘwhere
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> ⓘwhere
S: Serializer,
§impl<T, S> SerializeWith<Option<Box<T>>, S> for Nichewhere
T: SerializeUnsized<S> + ?Sized,
S: Fallible + Writer + ?Sized,
<<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata: Default,
impl<T, S> SerializeWith<Option<Box<T>>, S> for Nichewhere
T: SerializeUnsized<S> + ?Sized,
S: Fallible + Writer + ?Sized,
<<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata: Default,
§impl<A, O, S> SerializeWith<Option<O>, S> for Map<A>
impl<A, O, S> SerializeWith<Option<O>, S> for Map<A>
§impl<T, S> SerializeWith<Option<T>, S> for DefaultNiche
impl<T, S> SerializeWith<Option<T>, S> for DefaultNiche
§fn serialize_with(
field: &Option<T>,
serializer: &mut S,
) -> Result<<DefaultNiche as ArchiveWith<Option<T>>>::Resolver, <S as Fallible>::Error> ⓘ
fn serialize_with( field: &Option<T>, serializer: &mut S, ) -> Result<<DefaultNiche as ArchiveWith<Option<T>>>::Resolver, <S as Fallible>::Error> ⓘ
F
using the given serializer.§impl<T, W, N, S> SerializeWith<Option<T>, S> for MapNiche<W, N>where
W: SerializeWith<T, S> + ?Sized,
N: Niching<<W as ArchiveWith<T>>::Archived> + ?Sized,
S: Fallible + ?Sized,
impl<T, W, N, S> SerializeWith<Option<T>, S> for MapNiche<W, N>where
W: SerializeWith<T, S> + ?Sized,
N: Niching<<W as ArchiveWith<T>>::Archived> + ?Sized,
S: Fallible + ?Sized,
§impl<T, N, S> SerializeWith<Option<T>, S> for NicheInto<N>
impl<T, N, S> SerializeWith<Option<T>, S> for NicheInto<N>
1.37.0 · Source§impl<T, U> Sum<Option<U>> for Option<T>where
T: Sum<U>,
impl<T, U> Sum<Option<U>> for Option<T>where
T: Sum<U>,
Source§fn sum<I>(iter: I) -> Option<T> ⓘ
fn sum<I>(iter: I) -> Option<T> ⓘ
Takes 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));
let words = vec!["have", "a", "good", "day"];
let total: Option<usize> = words.iter().map(|w| w.find('a')).sum();
assert_eq!(total, None);
§impl<T> ToPyObject for Option<T>where
T: ToPyObject,
Option::Some<T>
is converted like T
.
Option::None
is converted to Python None
.
impl<T> ToPyObject for Option<T>where
T: ToPyObject,
Option::Some<T>
is converted like T
.
Option::None
is converted to Python None
.
Source§impl<T> Try for Option<T>
impl<T> Try for Option<T>
Source§type Output = T
type Output = T
try_trait_v2
)?
when not short-circuiting.Source§type Residual = Option<Infallible>
type Residual = Option<Infallible>
try_trait_v2
)FromResidual::from_residual
as part of ?
when short-circuiting. Read moreSource§fn from_output(output: <Option<T> as Try>::Output) -> Option<T> ⓘ
fn from_output(output: <Option<T> as Try>::Output) -> Option<T> ⓘ
try_trait_v2
)Output
type. Read moreSource§fn branch(
self,
) -> ControlFlow<<Option<T> as Try>::Residual, <Option<T> as Try>::Output>
fn branch( self, ) -> ControlFlow<<Option<T> as Try>::Residual, <Option<T> as Try>::Output>
try_trait_v2
)?
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 moreSource§impl<T> UnwrapThrowExt<T> for Option<T>
impl<T> UnwrapThrowExt<T> for Option<T>
Source§fn unwrap_throw(self) -> T
fn unwrap_throw(self) -> T
Option
or Result
, but instead of panicking on failure,
throw an exception to JavaScript.Source§fn expect_throw(self, message: &str) -> T
fn expect_throw(self, message: &str) -> T
T
value, or throw an error to JS with the
given message if the T
value is unavailable (e.g. an Option<T>
is
None
).Source§impl<T> WasmAbi for Option<T>
impl<T> WasmAbi for Option<T>
§impl<T> Zeroable for Option<T>where
T: ZeroableInOption,
impl<T> Zeroable for Option<T>where
T: ZeroableInOption,
impl<T> Copy for Option<T>where
T: Copy,
impl<T> Eq for Option<T>where
T: Eq,
impl<T> Pod for Option<T>where
T: PodInOption,
impl<T> StructuralPartialEq for Option<T>
Auto Trait Implementations§
impl<T> Freeze for Option<T>where
T: Freeze,
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> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
§impl<T> ArchiveUnsized for Twhere
T: Archive,
impl<T> ArchiveUnsized for Twhere
T: Archive,
§type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
Archive
, it may be
unsized. Read more§fn archived_metadata(
&self,
) -> <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
fn archived_metadata( &self, ) -> <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize ⓘ
fn byte_align(&self) -> usize ⓘ
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self
.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of_val(&self) -> usize ⓘ
fn mem_align_of_val(&self) -> usize ⓘ
Source§fn mem_size_of_val(&self) -> usize ⓘ
fn mem_size_of_val(&self) -> usize ⓘ
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<'data, I> IntoParallelRefIterator<'data> for I
impl<'data, I> IntoParallelRefIterator<'data> for I
§type Iter = <&'data I as IntoParallelIterator>::Iter
type Iter = <&'data I as IntoParallelIterator>::Iter
§type Item = <&'data I as IntoParallelIterator>::Item
type Item = <&'data I as IntoParallelIterator>::Item
&'data T
reference type.§fn par_iter(&'data self) -> <I as IntoParallelRefIterator<'data>>::Iter
fn par_iter(&'data self) -> <I as IntoParallelRefIterator<'data>>::Iter
self
into a parallel iterator. Read more§impl<'data, I> IntoParallelRefMutIterator<'data> for I
impl<'data, I> IntoParallelRefMutIterator<'data> for I
§type Iter = <&'data mut I as IntoParallelIterator>::Iter
type Iter = <&'data mut I as IntoParallelIterator>::Iter
§type Item = <&'data mut I as IntoParallelIterator>::Item
type Item = <&'data mut I as IntoParallelIterator>::Item
&'data mut T
reference.§fn par_iter_mut(
&'data mut self,
) -> <I as IntoParallelRefMutIterator<'data>>::Iter
fn par_iter_mut( &'data mut self, ) -> <I as IntoParallelRefMutIterator<'data>>::Iter
self
. Read more§impl<'py, T, I> IntoPyDict<'py> for Iwhere
T: PyDictItem<'py>,
I: IntoIterator<Item = T>,
impl<'py, T, I> IntoPyDict<'py> for Iwhere
T: PyDictItem<'py>,
I: IntoIterator<Item = T>,
§fn into_py_dict(self, py: Python<'py>) -> Result<Bound<'py, PyDict>, PyErr> ⓘ
fn into_py_dict(self, py: Python<'py>) -> Result<Bound<'py, PyDict>, PyErr> ⓘ
PyDict
object pointer. Whether pointer owned or borrowed
depends on implementation.§fn into_py_dict_bound(self, py: Python<'py>) -> Bound<'py, PyDict>
fn into_py_dict_bound(self, py: Python<'py>) -> Bound<'py, PyDict>
IntoPyDict::into_py_dict
IntoPyDict::into_py_dict
.§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr> ⓘ
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr> ⓘ
self
into an owned Python object, dropping type information.§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError> ⓘ
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out
indicating that a T
is niched.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PyErrArguments for T
impl<T> PyErrArguments for T
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.