Enum amy::ChannelError [] [src]

pub enum ChannelError<T> {
    SendError(SendError<T>),
    TrySendError(TrySendError<T>),
    TryRecvError(TryRecvError),
    Io(Error),
}

Variants

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl<T> From<TryRecvError> for ChannelError<T>
[src]

[src]

Performs the conversion.