Struct tokio_retry::decorators::LimitedRetries [] [src]

pub struct LimitedRetries<S: RetryStrategy> { /* fields omitted */ }

A decorator limiting the number of retries.

Trait Implementations

impl<S: Clone + RetryStrategy> Clone for LimitedRetries<S>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S: RetryStrategy> RetryStrategy for LimitedRetries<S>
[src]

If Some is returned, causes a delay of the specified duration before the next attempt. If None is returned, causes no further attempts. Read more

Introduce full random jitter to the delay between attempts.

Limit the number of retries.

Limit the delay between attempts.

Run the provided action, and if it fails, retry it using this strategy.