pub enum AbsentOr<T> {
Absent,
Null,
Present(T),
}Expand description
An Option-like type that distinguishes between
“value not present” and “value present but null”.
Variants§
Implementations§
Trait Implementations§
Source§impl<'de, T: Deserialize<'de>> Deserialize<'de> for AbsentOr<T>
impl<'de, T: Deserialize<'de>> Deserialize<'de> for AbsentOr<T>
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T: Ord> Ord for AbsentOr<T>
impl<T: Ord> Ord for AbsentOr<T>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialOrd> PartialOrd for AbsentOr<T>
impl<T: PartialOrd> PartialOrd for AbsentOr<T>
impl<T: Copy> Copy for AbsentOr<T>
impl<T: Eq> Eq for AbsentOr<T>
impl<T> StructuralPartialEq for AbsentOr<T>
Auto Trait Implementations§
impl<T> Freeze for AbsentOr<T>where
T: Freeze,
impl<T> RefUnwindSafe for AbsentOr<T>where
T: RefUnwindSafe,
impl<T> Send for AbsentOr<T>where
T: Send,
impl<T> Sync for AbsentOr<T>where
T: Sync,
impl<T> Unpin for AbsentOr<T>where
T: Unpin,
impl<T> UnwindSafe for AbsentOr<T>where
T: UnwindSafe,
Blanket Implementations§
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§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