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> Debug for DeadlineError<T>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<T: Error> Error for DeadlineError<T>
[src]
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