Enum middleman::SendError [] [src]

pub enum SendError {
    Io(Error),
    TooBigToRepresent,
    Bincode(Box<ErrorKind>),
}

Error enum which arise from failing to send a Message with a Middleman.

Variants

Trait Implementations

impl Debug for SendError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<PackingError> for SendError
[src]

[src]

Performs the conversion.

impl From<Error> for SendError
[src]

[src]

Performs the conversion.

impl From<Box<ErrorKind>> for SendError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SendError

impl Sync for SendError