Expand description
Β§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
StructsΒ§
- Format
Duration π - A wrapper for formatting a
Durationin a human-readable way. Produces output like β2m 30sβ, β5h 12mβ, β45sβ, β500msβ. - Format
Time πAgo - A wrapper for formatting a
Durationwith βagoβ suffix. - Retry
Error - An error type for use when weβre going to do something a few times, and they might all fail.
EnumsΒ§
- Attempt π
- Represents which attempts, in sequence, failed to complete.
FunctionsΒ§
- current_
instant π - Return the current Instant.
- current_
system_ πtime - Return the current system time.
- fmt_
duration_ πimpl - Internal helper to format a duration.
- fmt_
error_ with_ sources - Helper: formats a
std::error::Errorand its sources (as"error: source")