[][src]Struct futures_retrying::Retry

pub struct Retry<R> where
    R: Retryable,
    R::Error: Debug
{ /* fields omitted */ }

Retry is return by retry

Trait Implementations

impl<'pin, R> Unpin for Retry<R> where
    R: Retryable,
    R::Error: Debug,
    __Retry<'pin, R>: Unpin
[src]

impl<R> Future for Retry<R> where
    R: Retryable,
    R::Error: Debug
[src]

type Output = Result<R::Item, Cancelled>

The type of value produced on completion.

Auto Trait Implementations

impl<R> Send for Retry<R> where
    R: Send,
    <R as Retryable>::Future: Send

impl<R> !Sync for Retry<R>

impl<R> !UnwindSafe for Retry<R>

impl<R> !RefUnwindSafe for Retry<R>

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,