Module tokio_retry

Module tokio_retry 

Source

Modules§

strategy
Assorted retry strategies including fixed interval and exponential back-off.

Structs§

Retry
Future that drives multiple attempts at an action via a retry strategy.
RetryIf
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.

Enums§

RetryError
Error is the error value in an actions’s retry result.

Traits§

Action
An action can be run multiple times and produces a future.
Condition
Specifies under which conditions a retry is attempted.
MapErr