Struct backoff::exponential::ExponentialBackoff

source ·
pub struct ExponentialBackoff<C> {
    pub current_interval: Duration,
    pub initial_interval: Duration,
    pub randomization_factor: f64,
    pub multiplier: f64,
    pub max_interval: Duration,
    pub start_time: Instant,
    pub max_elapsed_time: Option<Duration>,
    pub clock: C,
}

Fields§

§current_interval: Duration

The current retry interval.

§initial_interval: Duration

The initial retry interval.

§randomization_factor: f64

The randomization factor to use for creating a range around the retry interval.

A randomization factor of 0.5 results in a random period ranging between 50% below and 50% above the retry interval.

§multiplier: f64

The value to multiply the current interval with for each retry attempt.

§max_interval: Duration

The maximum value of the back off period. Once the retry interval reaches this value it stops increasing.

§start_time: Instant

The system time. It is calculated when an ExponentialBackoff instance is created and is reset when retry is called.

§max_elapsed_time: Option<Duration>

The maximum elapsed time after instantiating ExponentialBackfff or calling reset after which next_backoff returns None.

§clock: C

The clock used to get the current time.

Implementations§

source§

impl<C: Clock> ExponentialBackoff<C>

source

pub fn get_elapsed_time(&self) -> Duration

Returns the elapsed time since start_time.

Trait Implementations§

source§

impl<C> Backoff for ExponentialBackoff<C>
where C: Clock,

source§

fn reset(&mut self)

Resets the internal state to the initial value.
source§

fn next_backoff(&mut self) -> Option<Duration>

next_backoff() time is elapsed before it is called again. If it returns None, it means the operation timed out and no further retries are done.
source§

impl<C> Clone for ExponentialBackoff<C>
where C: Clone,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<C: Debug> Debug for ExponentialBackoff<C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C> Default for ExponentialBackoff<C>
where C: Clock + Default,

source§

fn default() -> ExponentialBackoff<C>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<C> Freeze for ExponentialBackoff<C>
where C: Freeze,

§

impl<C> RefUnwindSafe for ExponentialBackoff<C>
where C: RefUnwindSafe,

§

impl<C> Send for ExponentialBackoff<C>
where C: Send,

§

impl<C> Sync for ExponentialBackoff<C>
where C: Sync,

§

impl<C> Unpin for ExponentialBackoff<C>
where C: Unpin,

§

impl<C> UnwindSafe for ExponentialBackoff<C>
where C: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V