We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fn_traits
tuple_trait
fn_traits and tuple_trait can allow us to implement something like:
impl<B, T, E, Fut, FutureFn, Args> Retryable<B, T, E, Fut, FutureFn> for FutureFn where B: BackoffBuilder, Fut: Future<Output = Result<T, E>>, FutureFn: FnMut(Args) -> Fut, Args: Tuple, { fn retry(self, builder: &B) -> Retry<B::Backoff, T, E, Fut, FutureFn, Args> { Retry::new(self, builder.build()) } }
We can try to explore so that we can retry a function with args.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
fn_traits
andtuple_trait
can allow us to implement something like:We can try to explore so that we can retry a function with args.
The text was updated successfully, but these errors were encountered: