reqwest_retry

Trait RetryPolicy

Source
pub trait RetryPolicy {
    // Required method
    fn should_retry(&self, n_past_retries: u32) -> RetryDecision;
}

Required Methods§

Source

fn should_retry(&self, n_past_retries: u32) -> RetryDecision

Determine if a task should be retried according to a retry policy.

Implementors§