[][src]Union show_notes::e031::unions::EitherValue

pub union EitherValue<L: Copy, R: Copy> {
    left: L,
    right: R,
}

A union, to be used as the inner value for Either.

Fields

left: Lright: R

Auto Trait Implementations

impl<L, R> Send for EitherValue<L, R> where
    L: Send,
    R: Send

impl<L, R> Unpin for EitherValue<L, R> where
    L: Unpin,
    R: Unpin

impl<L, R> Sync for EitherValue<L, R> where
    L: Sync,
    R: Sync

impl<L, R> RefUnwindSafe for EitherValue<L, R> where
    L: RefUnwindSafe,
    R: RefUnwindSafe

impl<L, R> UnwindSafe for EitherValue<L, R> where
    L: UnwindSafe,
    R: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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