Enum async_serialization::DeserializeError [] [src]

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

An error that occured during deserialization.

Variants

Deprecated

An error propagated from the underlying reader.

Deprecated

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

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<E: Display> Display for DeserializeError<E>
[src]

[src]

Formats the value using the given formatter. Read more

impl<E: Error> Error for DeserializeError<E>
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl<E> From<FutIoErr> for DeserializeError<E>
[src]

[src]

Performs the conversion.

Auto Trait Implementations

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

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