Enum bincode::serde::SerializeError [] [src]

pub enum SerializeError {
    IoError(IoError),
    SizeLimit,
    Custom(String),
}

An error that can be produced during encoding.

Variants

IoError(IoError)

An error originating from the underlying Writer.

SizeLimit

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

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

Custom(String)

A custom error message

Trait Implementations

impl Debug for SerializeError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for SerializeError
[src]

fn custom<T: Into<String>>(msg: T) -> Self

Raised when there is general error when deserializing a type.

fn invalid_value(msg: &str) -> Self

Raised when a Serialize was passed an incorrect value.

impl Display for SerializeError
[src]

fn fmt(&self, f: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Error for SerializeError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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