pub trait RetryableError {
    fn should_retry(&self) -> bool;
    fn attempted(&self) -> bool;
}
Expand description

What errors should be retried

Required Methods

Whether the query should be retried after this error

Whether this error should count as an attempt

Implementors