Retry futures in backoff without effort.
The opposite backoff implementation of the popular backoff.
```rust use backon::Retryable; use backon::ExponentialBackoff; use anyhow::Result;
async fn fetch() -> Result
async fn main() -> Result<()> { let content = fetch.retry(ExponentialBackoff::default()).await?; println!("fetch succeeded: {}", contet);
Ok(())
} ```
Check out the CONTRIBUTING.md guide for more details on getting started with contributing to this project.
Submit issues for bug report or asking questions in discussion.
Licensed under Apache License, Version 2.0.