Enum tokio_retry::Error [] [src]

pub enum Error<E> {
    OperationError(E),
    TimerError(TimerError),
}

Represents the errors possible during the execution of the RetryFuture.

Variants

Trait Implementations

impl<E: Debug> Debug for Error<E>
[src]

[src]

Formats the value using the given formatter. Read more

impl<E: PartialEq> PartialEq for Error<E>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl<E: Display> Display for Error<E>
[src]

[src]

Formats the value using the given formatter. Read more

impl<E: Error> Error for Error<E>
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl<E> Send for Error<E> where
    E: Send

impl<E> Sync for Error<E> where
    E: Sync