Enum tokio_timer::TimeoutError
[−]
[src]
pub enum TimeoutError<T> {
Timer(T, TimerError),
TimedOut(T),
}The error type for timeout operations.
Variants
Timer(T, TimerError)An error caused by the timer
TimedOut(T)The operation timed out
Trait Implementations
impl<T: Clone> Clone for TimeoutError<T>[src]
fn clone(&self) -> TimeoutError<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more