retry_predicate/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(feature = "alloc")]
4extern crate alloc;
5
6//
7pub mod retry_predicate;
8
9pub use self::retry_predicate::RetryPredicate;
10
11//
12pub mod predicates;