Enum tokio_retry::RetryError [] [src]

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

Represents the errors possible during the execution of the RetryFuture.

Variants

Trait Implementations

impl<OE: Debug, TE: Debug> Debug for RetryError<OE, TE>
[src]

Formats the value using the given formatter.

impl<OE: PartialEq, TE> PartialEq for RetryError<OE, TE>
[src]

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

This method tests for !=.

impl<OE: Display, TE: Display> Display for RetryError<OE, TE>
[src]

Formats the value using the given formatter.

impl<OE: Error, TE: Error> Error for RetryError<OE, TE>
[src]

A short description of the error. Read more

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