pub trait Retryable {
// Required method
fn is_transient(&self) -> bool;
}Expand description
Classifies whether an error is safe to retry.
pub trait Retryable {
// Required method
fn is_transient(&self) -> bool;
}Classifies whether an error is safe to retry.