retry-error

An error type for an operation that can fail more than once

20 releases

0.6.0 Sep 30, 2024
0.5.3 Jun 5, 2024
0.5.1 Sep 5, 2023
0.4.2 Jun 30, 2023
0.0.0 Jun 24, 2021

#535 in Rust patterns

Download history 1486/week @ 2024-06-29 334/week @ 2024-07-06 593/week @ 2024-07-13 855/week @ 2024-07-20 1083/week @ 2024-07-27 1412/week @ 2024-08-03 1322/week @ 2024-08-10 1194/week @ 2024-08-17 1638/week @ 2024-08-24 2067/week @ 2024-08-31 1726/week @ 2024-09-07 1298/week @ 2024-09-14 1412/week @ 2024-09-21 1663/week @ 2024-09-28 1175/week @ 2024-10-05 941/week @ 2024-10-12

5,472 downloads per month
Used in 61 crates (4 directly)

MIT/Apache

17KB
300 lines

retry-error

An error attempt to represent multiple failures.

This crate implements RetryError, a type to use when you retry something a few times, and all those attempts can fail differently each time. Instead of returning only a single error, it records all of the errors received, in case they are different.

This crate is developed as part of Arti, a project to implement Tor in Rust. It's used by higher-level crates that retry operations.

Example

use retry_error::RetryError;

fn some_operation() -> anyhow::Result<bool> {
   unimplemented!(); // example
}

fn example() -> Result<(), RetryError<anyhow::Error>> {
   const N_ATTEMPTS: usize = 10;
   let mut err = RetryError::in_attempt_to("perform an example operation");
   for _ in 0..N_ATTEMPTS {
       match some_operation() {
           Ok(val) => return Ok(()),
           Err(e) => err.push(e),
       }
   }
   // All attempts failed; return all the errors.
   return Err(err);
}

License: MIT OR Apache-2.0

No runtime deps