macro_rules! retry_error {
($retries:expr, $fallible:expr, $($params:tt)*) => { ... };
($retries:expr, $fallible:expr) => { ... };
}
Expand description
Retry a provided fallible function N times
This will optionally log a message, and returns the final error if all attempts fail