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§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