retry_fn 0.2.0

A simple retry function with versions for blocking or non-blocking, tokio or async-std
Documentation
1
2
3
4
5
6
7
8
//! Different iterators to retry using
mod constant;
mod exponential;
mod immediate;

pub use constant::*;
pub use exponential::*;
pub use immediate::*;