Skip to main content

retry_blocking

Function retry_blocking 

Source
pub fn retry_blocking<T, E, F>(cfg: RetryConfig, f: F) -> Result<T, E>
where E: Display, F: FnMut() -> Result<T, E>,
Expand description

Run a fallible operation with the given retry policy (blocking).