Enum nexus::ReactorError [] [src]

pub enum ReactorError<S> {
    IoError(Error, S),
    NoSocketFound(Token),
    TimerError,
}

Error returned by the Reactor.

Variants

An I/O error was returned from the OS.

Could not find associated socket for the token.

An error occurred while adding a timeout.

Trait Implementations

impl<S: Debug> Debug for ReactorError<S>
[src]

Formats the value using the given formatter.

impl<S> Display for ReactorError<S>
[src]

Formats the value using the given formatter. Read more