Enum tokio_retry::RetryError [] [src]

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

Represents the errors possible during the execution of the RetryFuture.

Variants

Trait Implementations

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

Formats the value using the given formatter.

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

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

This method tests for !=.

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

Formats the value using the given formatter.

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

A short description of the error. Read more

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