pub trait Retryable {
    // Required method
    fn can_retry(&self) -> bool;
}
Expand description

Trait which is used check if the Error is Retryable.

Required Methods§

source

fn can_retry(&self) -> bool

Implementors§