pub trait Backoff:
Iterator<Item = Duration>
+ Send
+ Sync
+ Unpin {
// Required method
fn reset(&mut self);
}Expand description
A mostly internal trait to allow resetting backoff based on a reset duration
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".