Enum mio::channel::TrySendError [] [src]

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

Variants

Trait Implementations

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<T: Any> Error for TrySendError<T>
[src]

A short description of the error. Read more

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

impl<T> Debug for TrySendError<T>
[src]

Formats the value using the given formatter.

impl<T> Display for TrySendError<T>
[src]

Formats the value using the given formatter.