pub struct ExponentialRetryPolicy { /* private fields */ }Expand description
Retry policy with exponential back-off.
Retry policy with exponential back-off (with an added random delay up to 256 ms). Each retry will happen at least after an exponential wait time. So if x is the first retry wait, the second will be x2, the third x4 and so on. 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 ExponentialRetryPolicy
 
impl Clone for ExponentialRetryPolicy
Source§fn clone(&self) -> ExponentialRetryPolicy
 
fn clone(&self) -> ExponentialRetryPolicy
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 ExponentialRetryPolicy
 
impl Debug for ExponentialRetryPolicy
Source§impl PartialEq for ExponentialRetryPolicy
 
impl PartialEq for ExponentialRetryPolicy
Source§impl RetryPolicy for ExponentialRetryPolicy
 
impl RetryPolicy for ExponentialRetryPolicy
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 ExponentialRetryPolicy
impl StructuralPartialEq for ExponentialRetryPolicy
Auto Trait Implementations§
impl Freeze for ExponentialRetryPolicy
impl RefUnwindSafe for ExponentialRetryPolicy
impl Send for ExponentialRetryPolicy
impl Sync for ExponentialRetryPolicy
impl Unpin for ExponentialRetryPolicy
impl UnwindSafe for ExponentialRetryPolicy
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§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
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.Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more