Skip to main content

RetryError

Enum RetryError 

Source
#[non_exhaustive]
pub enum RetryError<E> { Exhausted { attempts: u32, last_error: E, }, }
Expand description

The error returned when a retried operation does not succeed.

It carries how many attempts were made and the last error the operation produced. There is intentionally no E: core::error::Error bound and no allocation: the failing value is moved in by value.

#[non_exhaustive]: new variants may be added in a future release, so match with a wildcard arm.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Exhausted

No further attempts will be made. This covers both running out of the allowed attempts and the retry predicate declining to retry: in either case attempts is the number of attempts actually made and last_error is the error from the final attempt.

Fields

§attempts: u32

The number of attempts made (always >= 1).

§last_error: E

The error returned by the final attempt.

Implementations§

Source§

impl<E> RetryError<E>

Source

pub fn attempts(&self) -> u32

The number of attempts that were made.

Examples found in repository?
examples/basic_retry.rs (line 63)
17fn main() {
18    let policy = RetryPolicy::new(
19        5,
20        Backoff::exponential(Duration::from_millis(50), 2).with_max_delay(Duration::from_secs(1)),
21    )
22    .expect("max_attempts is non-zero");
23
24    // An operation that fails twice with a temporary error, then succeeds.
25    let mut attempt = 0;
26    let result: Result<&str, RetryError<ApiError>> = retry_with_sleep(
27        &policy,
28        || {
29            attempt += 1;
30            println!("attempt {attempt}");
31            if attempt < 3 {
32                Err(ApiError::Temporary)
33            } else {
34                Ok("payload")
35            }
36        },
37        |error| matches!(error, ApiError::Temporary), // retry only temporary errors
38        |delay| {
39            // You provide the waiting. In real code, call your platform or
40            // runtime sleep here; this example only reports the delay so it
41            // stays dependency-free and instant.
42            println!("  would wait {delay:?} before the next attempt");
43        },
44    );
45    match result {
46        Ok(body) => println!("succeeded with: {body}"),
47        Err(error) => println!("gave up: {error:?}"),
48    }
49
50    // A fatal error stops immediately, even though attempts remain.
51    let mut attempt = 0;
52    let result: Result<&str, RetryError<ApiError>> = retry_with_sleep(
53        &policy,
54        || {
55            attempt += 1;
56            Err(ApiError::Fatal)
57        },
58        |error| matches!(error, ApiError::Temporary),
59        |_delay| {},
60    );
61    println!(
62        "fatal path: stopped after {} attempt(s)",
63        result.unwrap_err().attempts()
64    );
65}
Source

pub fn last_error(&self) -> &E

A reference to the error returned by the final attempt.

Source

pub fn into_last_error(self) -> E

Consumes the error and returns the final attempt’s error.

Trait Implementations§

Source§

impl<E: Clone> Clone for RetryError<E>

Source§

fn clone(&self) -> RetryError<E>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<E: Copy> Copy for RetryError<E>

Source§

impl<E: Debug> Debug for RetryError<E>

Source§

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

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

impl<E: Display> Display for RetryError<E>

Source§

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

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

impl<E: Eq> Eq for RetryError<E>

Source§

impl<E: Error + 'static> Error for RetryError<E>

Available on crate feature std only.
Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<E: Hash> Hash for RetryError<E>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<E: PartialEq> PartialEq for RetryError<E>

Source§

fn eq(&self, other: &RetryError<E>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<E> StructuralPartialEq for RetryError<E>

Auto Trait Implementations§

§

impl<E> Freeze for RetryError<E>
where E: Freeze,

§

impl<E> RefUnwindSafe for RetryError<E>
where E: RefUnwindSafe,

§

impl<E> Send for RetryError<E>
where E: Send,

§

impl<E> Sync for RetryError<E>
where E: Sync,

§

impl<E> Unpin for RetryError<E>
where E: Unpin,

§

impl<E> UnsafeUnpin for RetryError<E>
where E: UnsafeUnpin,

§

impl<E> UnwindSafe for RetryError<E>
where E: 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§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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

Source§

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.