pub trait IsSpuriousError: Error {
    fn is_spurious(&self) -> bool { ... }
}
Expand description

An error which can tell whether it’s worth retrying to maybe succeed next time.

Provided Methods§

Return true if retrying might result in a different outcome due to IO working out differently.

Implementations on Foreign Types§

Implementors§