Enum mio::channel::SendError [] [src]

pub enum SendError<T> {
    Io(Error),
    Disconnected(T),
}

Variants

Trait Implementations

impl<T: Debug> Debug for SendError<T>
[src]

Formats the value using the given formatter.

impl<T> From<SendError<T>> for SendError<T>
[src]

Performs the conversion.

impl<T> From<Error> for SendError<T>
[src]

Performs the conversion.