pub trait Retryable {
// Required method
fn is_retryable(&self) -> bool;
}Expand description
The retry policy of the error.
Required Methods§
fn is_retryable(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".