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]
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.