Enum async_serialization::DeserializeError [] [src]

pub enum DeserializeError<E> {
    ReaderError(FutIoErr),
    DataError(E),
}

An error that occured during deserialization.

Variants

An error propagated from the underlying reader.

An error describing why the read data could not be deserialized into a value.

Trait Implementations

Auto Trait Implementations

impl<E> Send for DeserializeError<E> where
    E: Send

impl<E> Sync for DeserializeError<E> where
    E: Sync