Enum bytecheck::Tuple1CheckError[][src]

pub enum Tuple1CheckError<T0> {
    T0(T0),
}

An error resulting from an invalid tuple.

Variants

T0(T0)

Trait Implementations

impl<T0: Debug> Debug for Tuple1CheckError<T0>[src]

impl<T0: Display> Display for Tuple1CheckError<T0>[src]

impl<T0: Display + Debug> Error for Tuple1CheckError<T0>[src]

Auto Trait Implementations

impl<T0> RefUnwindSafe for Tuple1CheckError<T0> where
    T0: RefUnwindSafe

impl<T0> Send for Tuple1CheckError<T0> where
    T0: Send

impl<T0> Sync for Tuple1CheckError<T0> where
    T0: Sync

impl<T0> Unpin for Tuple1CheckError<T0> where
    T0: Unpin

impl<T0> UnwindSafe for Tuple1CheckError<T0> where
    T0: 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> Pointee for T[src]

type Metadata = ()

The type for metadata in pointers and references to Self.

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.