Struct tokio_timer::DeadlineError [−][src]
Error returned by Deadline
future.
Methods
impl<T> DeadlineError<T>
[src]
[−]
impl<T> DeadlineError<T>
pub fn inner(err: T) -> DeadlineError<T>
[src]
[−]
pub fn inner(err: T) -> DeadlineError<T>
Create a new DeadlineError
representing the inner future 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 future 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() -> DeadlineError<T>
[src]
[−]
pub fn elapsed() -> DeadlineError<T>
Create a new DeadlineError
representing the inner future 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 future not
completing before the deadline is reached.
pub fn timer(err: Error) -> DeadlineError<T>
[src]
[−]
pub fn timer(err: Error) -> DeadlineError<T>
Creates a new DeadlineError
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 DeadlineError<T>
[src]
[+]
impl<T: Debug> Debug for DeadlineError<T>
impl<T: Error> Error for DeadlineError<T>
[src]
[+]
impl<T: Error> Error for DeadlineError<T>
impl<T: Display> Display for DeadlineError<T>
[src]
[+]
impl<T: Display> Display for DeadlineError<T>
Auto Trait Implementations
impl<T> Send for DeadlineError<T> where
T: Send,
impl<T> Send for DeadlineError<T> where
T: Send,
impl<T> Sync for DeadlineError<T> where
T: Sync,
impl<T> Sync for DeadlineError<T> where
T: Sync,