Trait Backoff

Source
pub trait Backoff:
    Iterator<Item = Duration>
    + Send
    + Sync
    + Unpin {
    // Required method
    fn reset(&mut self);
}

Required Methods§

Source

fn reset(&mut self)

Resets the internal state to the initial value.

Implementations on Foreign Types§

Source§

impl<B: Backoff + ?Sized> Backoff for Box<B>

Source§

fn reset(&mut self)

Implementors§