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: PartialOrd, B: PartialOrd> PartialOrd for OneOf<A, B>
impl<A: PartialOrd, B: PartialOrd> PartialOrd for OneOf<A, B>
impl<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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.