Struct tokio_retry::RetryIf[][src]

pub struct RetryIf<I, A, C> where
    I: Iterator<Item = Duration>,
    A: Action,
    C: Condition<A::Error>, 
{ /* fields omitted */ }

Future that drives multiple attempts at an action via a retry strategy. Retries are only attempted if the Error returned by the future satisfies a given condition.

Implementations

impl<I, A, C> RetryIf<I, A, C> where
    I: Iterator<Item = Duration>,
    A: Action,
    C: Condition<A::Error>, 
[src]

pub fn spawn<T: IntoIterator<IntoIter = I, Item = Duration>>(
    strategy: T,
    action: A,
    condition: C
) -> RetryIf<I, A, C>

Notable traits for RetryIf<I, A, C>

impl<I, A, C> Future for RetryIf<I, A, C> where
    I: Iterator<Item = Duration>,
    A: Action,
    C: Condition<A::Error>, 
type Output = Result<A::Item, A::Error>;
[src]

Trait Implementations

impl<I, A, C> Future for RetryIf<I, A, C> where
    I: Iterator<Item = Duration>,
    A: Action,
    C: Condition<A::Error>, 
[src]

type Output = Result<A::Item, A::Error>

The type of value produced on completion.

impl<'pin, I, A, C> Unpin for RetryIf<I, A, C> where
    I: Iterator<Item = Duration>,
    A: Action,
    C: Condition<A::Error>,
    __RetryIf<'pin, I, A, C>: Unpin
[src]

Auto Trait Implementations

impl<I, A, C> !RefUnwindSafe for RetryIf<I, A, C>

impl<I, A, C> Send for RetryIf<I, A, C> where
    A: Send,
    C: Send,
    I: Send,
    <A as Action>::Future: Send

impl<I, A, C> Sync for RetryIf<I, A, C> where
    A: Sync,
    C: Sync,
    I: Sync,
    <A as Action>::Future: Sync

impl<I, A, C> !UnwindSafe for RetryIf<I, A, C>

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.

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