Enum mio::NotifyError [] [src]

pub enum NotifyError<T> {
    Io(Error),
    Full(T),
    Closed(Option<T>),
}

Variants

Io(Error)Full(T)Closed(Option<T>)

Trait Implementations

impl<M> Debug for NotifyError<M>
[src]

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

Formats the value using the given formatter.

impl<M> Display for NotifyError<M>
[src]

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

Formats the value using the given formatter.

impl<M: Any> Error for NotifyError<M>
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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