[][src]Struct tryhard::RetryFn

pub struct RetryFn<F> { /* fields omitted */ }

A type that produces retryable futures.

Implementations

impl<F> RetryFn<F>[src]

pub fn retries<Fut, T, E>(
    self,
    max_retries: u32
) -> RetryFuture<F, Fut, NoBackoff, impl OnRetry<E>>

Notable traits for RetryFuture<F, Fut, B, OnRetryT>

impl<F, Fut, B, T, E, OnRetryT> Future for RetryFuture<F, Fut, B, OnRetryT> where
    F: FnMut() -> Fut,
    Fut: Future<Output = Result<T, E>>,
    E: Display,
    B: BackoffStrategy<E>,
    RetryPolicy: From<B::Output>,
    OnRetryT: OnRetry<E>, 
type Output = Result<T, E>;
where
    F: FnMut() -> Fut,
    Fut: Future<Output = Result<T, E>>, 
[src]

Specify the number of times to retry the future.

Trait Implementations

impl<F: Debug> Debug for RetryFn<F>[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for RetryFn<F> where
    F: RefUnwindSafe

impl<F> Send for RetryFn<F> where
    F: Send

impl<F> Sync for RetryFn<F> where
    F: Sync

impl<F> Unpin for RetryFn<F> where
    F: Unpin

impl<F> UnwindSafe for RetryFn<F> where
    F: UnwindSafe

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<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.