//! Reexports the trait [`RetryPolicy`] from the `retry_policies` crate as well as all
//! implementations.
//!
//! This module also provides the [`DoNotRetryPolicy`] which is useful if you do not want to retry
//! anything.
pub use ;
use SystemTime;
/// A simple [`RetryPolicy`] that just never retries.
;
/// Returns the default retry policy that can be used.
///
/// This is useful if you just do not care about a retry policy and you just want something
/// sensible. Note that the behavior of what is "sensible" might change over time.