Trait RetryableError
pub trait RetryableError {
// Required method
fn is_retryable(&self) -> bool;
}Expand description
Trait to determine if an error is retryable.
Required Methods§
fn is_retryable(&self) -> bool
fn is_retryable(&self) -> bool
Returns true if the operation should be retried for this error.