[][src]Struct tryagain::future::RetryFuture

pub struct RetryFuture<F, Fut, P, B> { /* fields omitted */ }

A future that will retry an operation.

Trait Implementations

impl<T, E, F, Fut, P, B> Future for RetryFuture<F, Fut, P, B> where
    F: Fn() -> Fut,
    Fut: Future<Output = Result<T, E>>,
    P: Fn(&E, u32) -> bool,
    B: Backoff
[src]

type Output = Result<T, E>

The type of value produced on completion.

impl<'pin, F, Fut, P, B> Unpin for RetryFuture<F, Fut, P, B> where
    __RetryFuture<'pin, F, Fut, P, B>: Unpin
[src]

Auto Trait Implementations

impl<F, Fut, P, B> RefUnwindSafe for RetryFuture<F, Fut, P, B> where
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    Fut: RefUnwindSafe,
    P: RefUnwindSafe
[src]

impl<F, Fut, P, B> Send for RetryFuture<F, Fut, P, B> where
    B: Send,
    F: Send,
    Fut: Send,
    P: Send
[src]

impl<F, Fut, P, B> Sync for RetryFuture<F, Fut, P, B> where
    B: Sync,
    F: Sync,
    Fut: Sync,
    P: Sync
[src]

impl<F, Fut, P, B> UnwindSafe for RetryFuture<F, Fut, P, B> where
    B: UnwindSafe,
    F: UnwindSafe,
    Fut: UnwindSafe,
    P: UnwindSafe
[src]

Blanket Implementations

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

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

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

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

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

impl<F> IntoFuture for F where
    F: Future
[src]

type Output = <F as Future>::Output

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

The output that the future will produce on completion.

type Future = F

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

Which kind of future are we turning this into?

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.