Skip to main content

Retryable

Trait Retryable 

Source
pub trait Retryable {
    // Required method
    fn is_retryable(&self) -> bool;
}
Expand description

The retry policy of the error.

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T, E> Retryable for Result<T, E>
where E: Retryable,

Implementors§