pub struct ExponentialRetryOptions {
pub initial_delay: Duration,
pub max_retries: u32,
pub max_total_elapsed: Duration,
pub max_delay: Duration,
}Available on crate feature
export-azure only.Expand description
Options for how an exponential retry strategy should behave.
ยงExample
Configuring retry to be exponential with 10 retries max and an initial delay of 1 second.
RetryOptions::exponential(
ExponentialRetryOptions {
max_retries: 10u32,
initial_delay: Duration::seconds(1),
..Default::default()
}
);Fieldsยง
ยงinitial_delay: DurationThe initial delay between retry attempts. The delay will increase with each retry.
The default is 200 milliseconds.
max_retries: u32The maximum number of retry attempts before giving up.
The default is 8.
max_total_elapsed: DurationThe maximum permissible elapsed time since starting to retry before giving up.
The default is 1 minute.
max_delay: DurationThe maximum permissible time between retries.
The default is 30 seconds. For SRE reasons, this is only respected when above 1 second.
Trait Implementationsยง
Sourceยงimpl Clone for ExponentialRetryOptions
impl Clone for ExponentialRetryOptions
Sourceยงfn clone(&self) -> ExponentialRetryOptions
fn clone(&self) -> ExponentialRetryOptions
Returns a duplicate 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 ExponentialRetryOptions
impl Debug for ExponentialRetryOptions
Sourceยงimpl Default for ExponentialRetryOptions
impl Default for ExponentialRetryOptions
Sourceยงfn default() -> ExponentialRetryOptions
fn default() -> ExponentialRetryOptions
Returns the โdefault valueโ for a type. Read more
Auto Trait Implementationsยง
impl Freeze for ExponentialRetryOptions
impl RefUnwindSafe for ExponentialRetryOptions
impl Send for ExponentialRetryOptions
impl Sync for ExponentialRetryOptions
impl Unpin for ExponentialRetryOptions
impl UnsafeUnpin for ExponentialRetryOptions
impl UnwindSafe for ExponentialRetryOptions
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