pub struct FixedRetryPolicy { /* private fields */ }
Expand description
Retry policy with a fixed back-off.
Retry policy with fixed back-off (with an added random delay up to 256 ms). Each retry will happen at least after the same, configured sleep time. The policy will retry until the maximum number of retries have been reached or the maximum allowed delay has passed (whichever comes first). The wait time is not precise.
Trait Implementations§
source§impl Clone for FixedRetryPolicy
impl Clone for FixedRetryPolicy
source§fn clone(&self) -> FixedRetryPolicy
fn clone(&self) -> FixedRetryPolicy
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 FixedRetryPolicy
impl Debug for FixedRetryPolicy
source§impl PartialEq for FixedRetryPolicy
impl PartialEq for FixedRetryPolicy
source§impl RetryPolicy for FixedRetryPolicy
impl RetryPolicy for FixedRetryPolicy
source§fn is_expired(&self, time_since_start: Duration, retry_count: u32) -> bool
fn is_expired(&self, time_since_start: Duration, retry_count: u32) -> bool
Determine if no more retries should be performed. Read more
source§fn sleep_duration(&self, _retry_count: u32) -> Duration
fn sleep_duration(&self, _retry_count: u32) -> Duration
Determine how long before the next retry should be attempted.
source§fn wait<'life0, 'life1, 'async_trait>(
&'life0 self,
_error: &'life1 Error,
retry_count: u32,
retry_after: Option<Duration>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn wait<'life0, 'life1, 'async_trait>(
&'life0 self,
_error: &'life1 Error,
retry_count: u32,
retry_after: Option<Duration>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
A Future that will wait until the request can be retried.
error
is the Error
value the led to a retry attempt.
retry_after
is the duration to wait before retrying, if provided by the server response.impl Eq for FixedRetryPolicy
impl StructuralPartialEq for FixedRetryPolicy
Auto Trait Implementations§
impl Freeze for FixedRetryPolicy
impl RefUnwindSafe for FixedRetryPolicy
impl Send for FixedRetryPolicy
impl Sync for FixedRetryPolicy
impl Unpin for FixedRetryPolicy
impl UnwindSafe for FixedRetryPolicy
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
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.