Enum bincode::rustc_serialize::EncodingError [] [src]

pub enum EncodingError {
    IoError(IoError),
    SizeLimit,
}

An error that can be produced during encoding.

Variants

An error originating from the underlying Writer.

An object could not be encoded with the given size limit.

This error is returned before any bytes are written to the output Writer.

Trait Implementations

impl Debug for EncodingError
[src]

Formats the value using the given formatter.

impl Display for EncodingError
[src]

Formats the value using the given formatter.

impl Error for EncodingError
[src]

A short description of the error. Read more

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