pub enum OptionNA<T> {
NA,
Some(T),
}
Variants§
Implementations§
Trait Implementations§
source§impl CoercibleInto<OptionNA<String>> for OptionNA<bool>
impl CoercibleInto<OptionNA<String>> for OptionNA<bool>
fn coerce_into(self) -> OptionNA<String>
source§impl CoercibleInto<OptionNA<String>> for OptionNA<f64>
impl CoercibleInto<OptionNA<String>> for OptionNA<f64>
fn coerce_into(self) -> OptionNA<String>
source§impl CoercibleInto<OptionNA<String>> for OptionNA<i32>
impl CoercibleInto<OptionNA<String>> for OptionNA<i32>
fn coerce_into(self) -> OptionNA<String>
source§impl CoercibleInto<OptionNA<String>> for String
impl CoercibleInto<OptionNA<String>> for String
fn coerce_into(self) -> OptionNA<String>
source§impl<T> CoercibleInto<OptionNA<T>> for OptionNA<String>where
T: FromStr,
impl<T> CoercibleInto<OptionNA<T>> for OptionNA<String>where
T: FromStr,
fn coerce_into(self) -> OptionNA<T>
source§impl CoercibleInto<OptionNA<bool>> for OptionNA<bool>
impl CoercibleInto<OptionNA<bool>> for OptionNA<bool>
fn coerce_into(self) -> OptionNA<bool>
source§impl CoercibleInto<OptionNA<bool>> for OptionNA<f64>
impl CoercibleInto<OptionNA<bool>> for OptionNA<f64>
fn coerce_into(self) -> OptionNA<bool>
source§impl CoercibleInto<OptionNA<bool>> for OptionNA<i32>
impl CoercibleInto<OptionNA<bool>> for OptionNA<i32>
fn coerce_into(self) -> OptionNA<bool>
source§impl CoercibleInto<OptionNA<f64>> for OptionNA<bool>
impl CoercibleInto<OptionNA<f64>> for OptionNA<bool>
fn coerce_into(self) -> OptionNA<f64>
source§impl CoercibleInto<OptionNA<f64>> for OptionNA<f64>
impl CoercibleInto<OptionNA<f64>> for OptionNA<f64>
fn coerce_into(self) -> OptionNA<f64>
source§impl CoercibleInto<OptionNA<f64>> for OptionNA<i32>
impl CoercibleInto<OptionNA<f64>> for OptionNA<i32>
fn coerce_into(self) -> OptionNA<f64>
source§impl CoercibleInto<OptionNA<i32>> for OptionNA<bool>
impl CoercibleInto<OptionNA<i32>> for OptionNA<bool>
fn coerce_into(self) -> OptionNA<i32>
source§impl CoercibleInto<OptionNA<i32>> for OptionNA<f64>
impl CoercibleInto<OptionNA<i32>> for OptionNA<f64>
fn coerce_into(self) -> OptionNA<i32>
source§impl CoercibleInto<OptionNA<i32>> for OptionNA<i32>
impl CoercibleInto<OptionNA<i32>> for OptionNA<i32>
fn coerce_into(self) -> OptionNA<i32>
source§impl<T, U> IntoLogical<OptionNA<T>> for OptionNA<U>where
U: IntoLogical<T>,
impl<T, U> IntoLogical<OptionNA<T>> for OptionNA<U>where
U: IntoLogical<T>,
fn as_logical(&mut self) -> OptionNA<T>
source§impl<T, U> MinimallyNumeric for OptionNA<T>
impl<T, U> MinimallyNumeric for OptionNA<T>
source§impl<T> PartialOrd for OptionNA<T>where
T: PartialOrd,
impl<T> PartialOrd for OptionNA<T>where
T: PartialOrd,
impl<T: Eq> Eq for OptionNA<T>
impl<T> StructuralPartialEq for OptionNA<T>
Auto Trait Implementations§
impl<T> Freeze for OptionNA<T>where
T: Freeze,
impl<T> RefUnwindSafe for OptionNA<T>where
T: RefUnwindSafe,
impl<T> Send for OptionNA<T>where
T: Send,
impl<T> Sync for OptionNA<T>where
T: Sync,
impl<T> Unpin for OptionNA<T>where
T: Unpin,
impl<T> UnwindSafe for OptionNA<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
fn as_any(&self) -> &(dyn Any + 'static)
fn as_dyn_compare(&self) -> &(dyn DynCompare + 'static)
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> DynCompare for T
impl<T> DynCompare for T
fn dyn_eq(&self, other: &(dyn DynCompare + 'static)) -> bool
§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
Checks if this value is equivalent to the given key. Read more
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>
Converts
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>
Converts
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