Enum ArchivedOption
#[repr(u8)]pub enum ArchivedOption<T> {
None,
Some(T),
}
dep_rkyv
only.Expand description
Variants§
Implementations§
§impl<T> ArchivedOption<T>
impl<T> ArchivedOption<T>
pub fn ok_or<E>(self, err: E) -> Result<T, E> ⓘ
pub fn ok_or<E>(self, err: E) -> Result<T, E> ⓘ
Transforms the ArchivedOption<T>
into a Result<T, E>
, mapping
Some(v)
to Ok(v)
and None
to Err(err)
.
pub 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,
Returns the contained Some
value or computes it from a closure.
pub fn as_seal(this: Seal<'_, ArchivedOption<T>>) -> Option<Seal<'_, T>> ⓘ
pub fn as_seal(this: Seal<'_, ArchivedOption<T>>) -> Option<Seal<'_, T>> ⓘ
Converts from Seal<'_, ArchivedOption<T>>
to Option<Seal<'_, T>>
.
pub fn iter_mut(&mut self) -> Iter<&mut T> ⓘ
pub fn iter_mut(&mut self) -> Iter<&mut T> ⓘ
Returns an iterator over the mutable possibly-contained value.
pub fn iter_seal(this: Seal<'_, ArchivedOption<T>>) -> Iter<Seal<'_, T>> ⓘ
pub fn iter_seal(this: Seal<'_, ArchivedOption<T>>) -> Iter<Seal<'_, T>> ⓘ
Returns an iterator over the sealed possibly-contained value.
pub fn get_or_insert(&mut self, v: T) -> &mut T
pub fn get_or_insert(&mut self, v: T) -> &mut T
Inserts v
into the option if it is None
, then returns a mutable
reference to the contained value.
pub 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,
Inserts a value computed from f
into the option if it is None
, then
returns a mutable reference to the contained value.
§impl<T> ArchivedOption<T>where
T: Deref,
impl<T> ArchivedOption<T>where
T: Deref,
§impl<T> ArchivedOption<T>where
T: DerefMut,
impl<T> ArchivedOption<T>where
T: DerefMut,
pub fn as_deref_mut(&mut self) -> Option<&mut <T as Deref>::Target> ⓘ
pub fn as_deref_mut(&mut self) -> Option<&mut <T as Deref>::Target> ⓘ
Converts from &mut ArchivedOption<T>
to Option<&mut T::Target>
.
Leaves the original ArchivedOption
in-place, creating a new Option
with a mutable reference to the inner type’s Deref::Target
type.
Trait Implementations§
§impl<T, __C> CheckBytes<__C> for ArchivedOption<T>
impl<T, __C> CheckBytes<__C> for ArchivedOption<T>
§impl<T> Clone for ArchivedOption<T>where
T: Clone,
impl<T> Clone for ArchivedOption<T>where
T: Clone,
§fn clone(&self) -> ArchivedOption<T>
fn clone(&self) -> ArchivedOption<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl<T> Debug for ArchivedOption<T>where
T: Debug,
impl<T> Debug for ArchivedOption<T>where
T: Debug,
§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<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> From<T> for ArchivedOption<T>
impl<T> From<T> for ArchivedOption<T>
§fn from(val: T) -> ArchivedOption<T>
fn from(val: T) -> ArchivedOption<T>
§impl<T> Hash for ArchivedOption<T>where
T: Hash,
impl<T> Hash for ArchivedOption<T>where
T: Hash,
§impl<'a, T> IntoIterator for &'a ArchivedOption<T>
impl<'a, T> IntoIterator for &'a ArchivedOption<T>
§impl<'a, T> IntoIterator for &'a mut ArchivedOption<T>
impl<'a, T> IntoIterator for &'a mut ArchivedOption<T>
§impl<T> Ord for ArchivedOption<T>where
T: Ord,
impl<T> Ord for ArchivedOption<T>where
T: Ord,
§fn cmp(&self, other: &ArchivedOption<T>) -> Ordering
fn cmp(&self, other: &ArchivedOption<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
§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> PartialEq for ArchivedOption<T>where
T: PartialEq,
impl<T> PartialEq for ArchivedOption<T>where
T: PartialEq,
§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>,
§impl<T> PartialOrd for ArchivedOption<T>where
T: PartialOrd,
impl<T> PartialOrd for ArchivedOption<T>where
T: PartialOrd,
impl<T> Copy for ArchivedOption<T>where
T: Copy,
impl<T> Eq for ArchivedOption<T>where
T: Eq,
impl<T> Portable for ArchivedOption<T>where
T: Portable,
Auto Trait Implementations§
impl<T> Freeze for ArchivedOption<T>where
T: Freeze,
impl<T> RefUnwindSafe for ArchivedOption<T>where
T: RefUnwindSafe,
impl<T> Send for ArchivedOption<T>where
T: Send,
impl<T> Sync for ArchivedOption<T>where
T: Sync,
impl<T> Unpin for ArchivedOption<T>where
T: Unpin,
impl<T> UnwindSafe for ArchivedOption<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
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,
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<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<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.