pub struct FixedRetryOptions {
pub delay: Duration,
pub max_retries: u32,
pub max_total_elapsed: Duration,
}
Expand description
Options for how a fixed retry strategy should behave.
§Example
Configuring retry to be fixed with 10 retries max.
RetryOptions::fixed(
FixedRetryOptions::default()
.max_retries(10u32)
);
Fields§
§delay: Duration
The delay between retry attempts.
The default is 200 milliseconds.
max_retries: u32
The maximum number of retry attempts before giving up.
The default is 8.
max_total_elapsed: Duration
The maximum permissible elapsed time since starting to retry.
The default is 1 minute.
Implementations§
source§impl FixedRetryOptions
impl FixedRetryOptions
sourcepub fn max_retries<P: Into<u32>>(self, max_retries: P) -> Self
pub fn max_retries<P: Into<u32>>(self, max_retries: P) -> Self
Set the maximum number of retry attempts before giving up.
sourcepub fn max_total_elapsed<P: Into<Duration>>(self, max_total_elapsed: P) -> Self
pub fn max_total_elapsed<P: Into<Duration>>(self, max_total_elapsed: P) -> Self
Set the maximum permissible elapsed time since starting to retry.
Trait Implementations§
source§impl Clone for FixedRetryOptions
impl Clone for FixedRetryOptions
source§fn clone(&self) -> FixedRetryOptions
fn clone(&self) -> FixedRetryOptions
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 FixedRetryOptions
impl Debug for FixedRetryOptions
Auto Trait Implementations§
impl Freeze for FixedRetryOptions
impl RefUnwindSafe for FixedRetryOptions
impl Send for FixedRetryOptions
impl Sync for FixedRetryOptions
impl Unpin for FixedRetryOptions
impl UnwindSafe for FixedRetryOptions
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)