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