[][src]Enum bytecheck::Tuple2CheckError

pub enum Tuple2CheckError<T1, T0> {
    T1(T1),
    T0(T0),
}

An error resulting from an invalid tuple.

Variants

T1(T1)
T0(T0)

Trait Implementations

impl<T1: Debug, T0: Debug> Debug for Tuple2CheckError<T1, T0>[src]

impl<T1: Display, T0: Display> Display for Tuple2CheckError<T1, T0>[src]

impl<T1: Display + Debug, T0: Display + Debug> Error for Tuple2CheckError<T1, T0>[src]

Auto Trait Implementations

impl<T1, T0> RefUnwindSafe for Tuple2CheckError<T1, T0> where
    T0: RefUnwindSafe,
    T1: RefUnwindSafe

impl<T1, T0> Send for Tuple2CheckError<T1, T0> where
    T0: Send,
    T1: Send

impl<T1, T0> Sync for Tuple2CheckError<T1, T0> where
    T0: Sync,
    T1: Sync

impl<T1, T0> Unpin for Tuple2CheckError<T1, T0> where
    T0: Unpin,
    T1: Unpin

impl<T1, T0> UnwindSafe for Tuple2CheckError<T1, T0> where
    T0: UnwindSafe,
    T1: UnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.