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

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

Variants

Io(Error)Full(T)Disconnected(T)

Trait Implementations

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

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

Formats the value using the given formatter.

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

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

Performs the conversion.

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

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

Performs the conversion.

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

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

Performs the conversion.