[][src]Struct tryhard::RetryFn

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

A type that produces retryable futures.

Implementations

impl<F, Fut, T, E> RetryFn<F> where
    F: FnMut() -> Fut,
    Fut: Future<Output = Result<T, E>>, 
[src]

pub fn retries(
    self,
    max_retries: u32
) -> RetryFuture<F, Fut, NoBackoff, NoOnRetry>

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>,
    B::Output: Into<RetryPolicy>,
    OnRetryT: OnRetry<E>, 
type Output = Result<T, E>;
[src]

Specify the number of times to retry the future.

pub fn with_config<BackoffT, OnRetryT>(
    self,
    config: RetryFutureConfig<BackoffT, OnRetryT>
) -> RetryFuture<F, Fut, BackoffT, OnRetryT>

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>,
    B::Output: Into<RetryPolicy>,
    OnRetryT: OnRetry<E>, 
type Output = Result<T, E>;
[src]

Create a retryable future from the given configuration.

Trait Implementations

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

Auto Trait Implementations

impl<F> RefUnwindSafe for RetryFn<F> where
    F: RefUnwindSafe
[src]

impl<F> Send for RetryFn<F> where
    F: Send
[src]

impl<F> Sync for RetryFn<F> where
    F: Sync
[src]

impl<F> Unpin for RetryFn<F> where
    F: Unpin
[src]

impl<F> UnwindSafe for RetryFn<F> where
    F: 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<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.