An open API service indexing awesome lists of open source software.

https://github.com/uttarayan21/retry


https://github.com/uttarayan21/retry

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

## Retry

```rust
use retry::prelude::*;
#[tokio::main]
pub async fn main() {
let arg1 = 100
foo.retry::<3>(arg1).await;
}
pub async fn foo(arg1: u32) -> Result<(), ()> {
// do_stuff().await
}
```