pub trait RetryableError<SP = NotSpecialized>:
Error
+ MaybeSend
+ MaybeSync {
// Required method
fn is_retryable(&self) -> bool;
}Expand description
Specifies which errors are retryable. All Errors are not retryable by-default.
pub trait RetryableError<SP = NotSpecialized>:
Error
+ MaybeSend
+ MaybeSync {
// Required method
fn is_retryable(&self) -> bool;
}Specifies which errors are retryable. All Errors are not retryable by-default.