Enum tokio_timer::TimeoutError [] [src]

pub enum TimeoutError<T, E> {
    Timer(T, TimerError),
    TimedOut(T),
    Inner(E),
}

The error type for timeout operations.

Variants

An error caused by the timer

The operation timed out

Inner error

Trait Implementations

impl<T: Clone, E: Clone> Clone for TimeoutError<T, E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T, E: Error> Display for TimeoutError<T, E>
[src]

Formats the value using the given formatter. Read more

impl<T, E: Error> Debug for TimeoutError<T, E>
[src]

Formats the value using the given formatter.

impl<T, E: Error> Error for TimeoutError<T, E>
[src]

A short description of the error. Read more

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