pub fn retry_blocking<T, E, F>(cfg: RetryConfig, f: F) -> Result<T, E>where E: Display, F: FnMut() -> Result<T, E>,
Run a fallible operation with the given retry policy (blocking).