pub trait BlockingRetryableWithContext<B, T, E, Ctx, F>{
// Required method
fn retry(
self,
builder: &B
) -> BlockingRetry<<B as BackoffBuilder>::Backoff, T, E, Ctx, F>;
}Expand description
BlockingRetryableWithContext will add retry support for functions.
Required Methods§
sourcefn retry(
self,
builder: &B
) -> BlockingRetry<<B as BackoffBuilder>::Backoff, T, E, Ctx, F>
fn retry( self, builder: &B ) -> BlockingRetry<<B as BackoffBuilder>::Backoff, T, E, Ctx, F>
Generate a new retry