Enum flo_canvas::StreamDecoderError[][src]

pub enum StreamDecoderError<E> {
    Decoder(DecoderError),
    Stream(E),
}

Error from either a decoder or the stream that's feeding it

Variants

Decoder(DecoderError)

Error from the decoder

Stream(E)

Error from the stream

Trait Implementations

impl<E: Clone> Clone for StreamDecoderError<E>[src]

impl<E: Debug> Debug for StreamDecoderError<E>[src]

impl<E: PartialEq> PartialEq<StreamDecoderError<E>> for StreamDecoderError<E>[src]

impl<E> StructuralPartialEq for StreamDecoderError<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for StreamDecoderError<E> where
    E: RefUnwindSafe
[src]

impl<E> Send for StreamDecoderError<E> where
    E: Send
[src]

impl<E> Sync for StreamDecoderError<E> where
    E: Sync
[src]

impl<E> Unpin for StreamDecoderError<E> where
    E: Unpin
[src]

impl<E> UnwindSafe for StreamDecoderError<E> where
    E: UnwindSafe
[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.