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

Returns true if the operation should be retried for this error.

Implementations on Foreign Types§

§

impl RetryableError for Error

§

fn is_retryable(&self) -> bool

Implementors§