Enum ipc_channel::SerializeError []

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

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.

A custom error message

Trait Implementations

impl Error for SerializeError

impl Error for SerializeError

impl Display for SerializeError

impl Debug for SerializeError

Formats the value using the given formatter.

impl From<UnixError> for SerializeError
[src]

Performs the conversion.