#[repr(C)]pub struct RetryPolicy {
pub max_attempts: u32,
pub min_delay: Duration,
pub max_delay: Duration,
pub multiplier: f64,
pub max_jitter_factor: Option<f64>,
}
Expand description
Configures how the executor retries failures
Fields§
§max_attempts: u32
The maximum number of retries before the worker becomes permanently failed
min_delay: Duration
The minimum delay between retries (applied to the first retry)
max_delay: Duration
The maximum delay between retries
multiplier: f64
Multiplier applied to the delay on each retry to implement exponential backoff
max_jitter_factor: Option<f64>
The maximum amount of jitter to add to the delay
Trait Implementations§
Source§impl Clone for RetryPolicy
impl Clone for RetryPolicy
Source§fn clone(&self) -> RetryPolicy
fn clone(&self) -> RetryPolicy
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RetryPolicy
impl Debug for RetryPolicy
Source§impl From<RetryPolicy> for RetryPolicy
impl From<RetryPolicy> for RetryPolicy
Source§fn from(value: RetryPolicy) -> Self
fn from(value: RetryPolicy) -> Self
Converts to this type from the input type.
Source§impl From<RetryPolicy> for RetryPolicy
impl From<RetryPolicy> for RetryPolicy
Source§fn from(val: RetryPolicy) -> Self
fn from(val: RetryPolicy) -> Self
Converts to this type from the input type.
impl Copy for RetryPolicy
Auto Trait Implementations§
impl Freeze for RetryPolicy
impl RefUnwindSafe for RetryPolicy
impl Send for RetryPolicy
impl Sync for RetryPolicy
impl Unpin for RetryPolicy
impl UnwindSafe for RetryPolicy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more