retry_policies/
lib.rs

1//! A collection of plug-and-play retry policies.
2pub mod policies;
3mod retry_policy;
4
5pub use retry_policy::{Jitter, RetryDecision, RetryPolicy};