pub trait Condition<E> {
    fn should_retry(&mut self, error: &E) -> bool;
}
Expand description

Specifies under which conditions a retry is attempted.

Required methods

Implementors