Struct tokio::timer::DeadlineError
[−]
[src]
pub struct DeadlineError<T>(_);
Error returned by Deadline future.
Methods
impl<T> DeadlineError<T>[src]
pub fn inner(err: T) -> DeadlineError<T>[src]
Create a new DeadlineError representing the inner future completing
with Err.
pub fn is_inner(&self) -> bool[src]
Returns true if the error was caused by the inner future completing
with Err.
pub fn into_inner(self) -> Option<T>[src]
Consumes self, returning the inner future error.
pub fn elapsed() -> DeadlineError<T>[src]
Create a new DeadlineError representing the inner future not
completing before the deadline is reached.
pub fn is_elapsed(&self) -> bool[src]
Returns true if the error was caused by the inner future not
completing before the deadline is reached.
pub fn timer(err: Error) -> DeadlineError<T>[src]
Creates a new DeadlineError representing an error encountered by the
timer implementation
pub fn is_timer(&self) -> bool[src]
Returns true if the error was caused by the timer.
pub fn into_timer(self) -> Option<Error>[src]
Consumes self, returning the error raised by the timer implementation.
Trait Implementations
impl<T> Debug for DeadlineError<T> where
T: Debug, [src]
T: Debug,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl<T> Error for DeadlineError<T> where
T: Error, [src]
T: Error,
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0[src]
The lower-level cause of this error, if any. Read more
impl<T> Display for DeadlineError<T> where
T: Display, [src]
T: Display,