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

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

Variants

Io(Error)Disconnected(T)

Trait Implementations

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

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

Formats the value using the given formatter.

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

fn from(src: SendError<T>) -> SendError<T>

Performs the conversion.

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

fn from(src: Error) -> SendError<T>

Performs the conversion.