[][src]Enum genio::error::ExtendError

pub enum ExtendError<R, E> {
    ReadErr(R),
    ExtendErr(E),
}

Error that might occur when doing operation on ExtendFromReader

Variants

ReadErr(R)

Reader failed

ExtendErr(E)

The type being extended failed.

Trait Implementations

impl<R: Debug, E: Debug> Debug for ExtendError<R, E>[src]

Auto Trait Implementations

impl<R, E> RefUnwindSafe for ExtendError<R, E> where
    E: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, E> Send for ExtendError<R, E> where
    E: Send,
    R: Send

impl<R, E> Sync for ExtendError<R, E> where
    E: Sync,
    R: Sync

impl<R, E> Unpin for ExtendError<R, E> where
    E: Unpin,
    R: Unpin

impl<R, E> UnwindSafe for ExtendError<R, E> where
    E: UnwindSafe,
    R: 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, 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.