Skip to main content

retry_fallible

Function retry_fallible 

Source
pub async fn retry_fallible<R, F, WorkFn>(
    metrics: &RetryMetrics,
    work_fn: WorkFn,
) -> R
where F: Future<Output = Result<R, Error>>, WorkFn: FnMut() -> F,