[go: up one dir, main page]

Backoff

Trait Backoff 

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

Required Methods§

Source

fn reset(&mut self)

Resets the internal state to the initial value.

Implementations on Foreign Types§

Source§

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

Source§

fn reset(&mut self)

Implementors§