pub trait BackoffSchedule: Iterator<Item = Duration> { }
Expand description

The retry policy that can retry something with backoff policy.

Implementors§

source§

impl<T> BackoffSchedule for T
where T: Iterator<Item = Duration>,

Any implementation which implements the Iterator trait would also implement BackoffSchedule.