[−][src]Enum itertools::EitherOrBoth
Value that either holds a single A or B, or both.
Variants
Both values are present.
Only the left value of type A is present.
Only the right value of type B is present.
Implementations
impl<A, B> EitherOrBoth<A, B>[src]
pub fn has_left(&self) -> bool[src]
If Left, or Both, return true, otherwise, return false.
pub fn has_right(&self) -> bool[src]
If Right, or Both, return true, otherwise, return false.
pub fn left(self) -> Option<A>[src]
If Left, or Both, return Some with the left value, otherwise, return None.
pub fn right(self) -> Option<B>[src]
If Right, or Both, return Some with the right value, otherwise, return None.
pub fn as_ref(&self) -> EitherOrBoth<&A, &B>[src]
Converts from &EitherOrBoth<A, B> to EitherOrBoth<&A, &B>.
pub fn as_mut(&mut self) -> EitherOrBoth<&mut A, &mut B>[src]
Converts from &mut EitherOrBoth<A, B> to EitherOrBoth<&mut A, &mut B>.
Trait Implementations
impl<A: Clone, B: Clone> Clone for EitherOrBoth<A, B>[src]
fn clone(&self) -> EitherOrBoth<A, B>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<A: Debug, B: Debug> Debug for EitherOrBoth<A, B>[src]
impl<A: Eq, B: Eq> Eq for EitherOrBoth<A, B>[src]
impl<A: PartialEq, B: PartialEq> PartialEq<EitherOrBoth<A, B>> for EitherOrBoth<A, B>[src]
fn eq(&self, other: &EitherOrBoth<A, B>) -> bool[src]
fn ne(&self, other: &EitherOrBoth<A, B>) -> bool[src]
impl<A, B> StructuralEq for EitherOrBoth<A, B>[src]
impl<A, B> StructuralPartialEq for EitherOrBoth<A, B>[src]
Auto Trait Implementations
impl<A, B> RefUnwindSafe for EitherOrBoth<A, B> where
A: RefUnwindSafe,
B: RefUnwindSafe,
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for EitherOrBoth<A, B> where
A: Send,
B: Send,
A: Send,
B: Send,
impl<A, B> Sync for EitherOrBoth<A, B> where
A: Sync,
B: Sync,
A: Sync,
B: Sync,
impl<A, B> Unpin for EitherOrBoth<A, B> where
A: Unpin,
B: Unpin,
A: Unpin,
B: Unpin,
impl<A, B> UnwindSafe for EitherOrBoth<A, B> where
A: UnwindSafe,
B: UnwindSafe,
A: UnwindSafe,
B: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,