[][src]Struct adventure::retry::tokio::Delay

pub struct Delay { /* fields omitted */ }

A response that completes at a specified instant in time.

Trait Implementations

impl Response for Delay[src]

type Ok = ()

The type of successful values of this response.

type Error = RetryError

The type of failures of this response.

Important traits for IntoFuture<T>
fn into_future(self) -> IntoFuture<Self> where
    Self: Sized
[src]

Wrap this response into a type that can work with futures. Read more

Auto Trait Implementations

impl Send for Delay

impl !Sync for Delay

Blanket Implementations

impl<T> ResponseExt for T where
    T: Response
[src]

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.