[][src]Enum cdpay::RetryError

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

Represents the errors possible during the execution of the RetryFuture.

Variants

Trait Implementations

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

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

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

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

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

This method tests for !=.

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T