pub struct RetryPolicy {
pub max_attempts: u32,
pub min_delay: Duration,
pub max_delay: Duration,
pub multiplier: f64,
pub max_jitter_factor: Option<f64>,
}
Fields§
§max_attempts: u32
§min_delay: Duration
§max_delay: Duration
§multiplier: f64
§max_jitter_factor: Option<f64>
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.
Source§impl PartialEq for RetryPolicy
impl PartialEq for RetryPolicy
impl StructuralPartialEq 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