pub enum OneOf<A, B> {
Left(A),
Right(B),
}
Variants§
Trait Implementations§
source§impl<'de, A, B> Deserialize<'de> for OneOf<A, B>where
A: Deserialize<'de>,
B: Deserialize<'de>,
impl<'de, A, B> Deserialize<'de> for OneOf<A, B>where
A: Deserialize<'de>,
B: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<A: Ord, B: Ord> Ord for OneOf<A, B>
impl<A: Ord, B: Ord> Ord for OneOf<A, B>
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<A: PartialEq, B: PartialEq> PartialEq for OneOf<A, B>
impl<A: PartialEq, B: PartialEq> PartialEq for OneOf<A, B>
source§impl<A: PartialOrd, B: PartialOrd> PartialOrd for OneOf<A, B>
impl<A: PartialOrd, B: PartialOrd> PartialOrd for OneOf<A, B>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<A: Eq, B: Eq> Eq for OneOf<A, B>
impl<A, B> StructuralPartialEq for OneOf<A, B>
Auto Trait Implementations§
impl<A, B> Freeze for OneOf<A, B>
impl<A, B> RefUnwindSafe for OneOf<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for OneOf<A, B>
impl<A, B> Sync for OneOf<A, B>
impl<A, B> Unpin for OneOf<A, B>
impl<A, B> UnwindSafe for OneOf<A, B>where
A: UnwindSafe,
B: 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