[−][src]Enum itertools::EitherOrBoth
Value that either holds a single A or B, or both.
Variants
Both(A, B)Both values are present.
Left(A)Only the left value of type A is present.
Right(B)Only the right value of type B is present.
Methods
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: 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: 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]
Performs copy-assignment from source. Read more
impl<A: Eq, B: Eq> Eq for EitherOrBoth<A, B>[src]
impl<A: Debug, B: Debug> Debug for EitherOrBoth<A, B>[src]
Auto Trait Implementations
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,
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)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> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,