[][src]Enum cotton::prelude::EitherOrBoth

pub enum EitherOrBoth<A, B> {
    Both(A, B),
    Left(A),
    Right(B),
}

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, B> Clone for EitherOrBoth<A, B> where
    A: Clone,
    B: Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<A, B> Debug for EitherOrBoth<A, B> where
    A: Debug,
    B: Debug
[src]

impl<A, B> Eq for EitherOrBoth<A, B> where
    A: Eq,
    B: Eq
[src]

impl<A, B> PartialEq<EitherOrBoth<A, B>> for EitherOrBoth<A, B> where
    A: PartialEq<A>,
    B: PartialEq<B>, 
[src]

Auto Trait Implementations

impl<A, B> Send for EitherOrBoth<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for EitherOrBoth<A, B> where
    A: Sync,
    B: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> TapOps for T[src]

fn tap<R, F>(self, f: F) -> Self where
    F: FnOnce(&mut Self) -> R, 
[src]

Executes a closure on an object.