[go: up one dir, main page]

Enum calloop::channel::SendError[][src]

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

Variants

Trait Implementations

impl<T> Error for SendError<T> where
    T: Any
[src]

This method is soft-deprecated. Read more

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

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

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter. Read more

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

Performs the conversion.

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

Performs the conversion.

Auto Trait Implementations

impl<T> Send for SendError<T> where
    T: Send

impl<T> Sync for SendError<T> where
    T: Sync