try_again/delay/
mod.rs

1mod exponential;
2mod fixed;
3mod none;
4
5pub use exponential::ExponentialBackoff;
6pub use fixed::Fixed;
7pub use none::None;