Struct tokio_retry::strategies::NoRetry [] [src]

pub struct NoRetry {}

A retry strategy that will not attempt any retries.

Trait Implementations

impl Clone for NoRetry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl RetryStrategy for NoRetry
[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.