retry_predicate/predicates/
mod.rs

1//
2#[cfg(feature = "alloc")]
3mod r#fn;
4
5#[cfg(feature = "alloc")]
6pub use r#fn::Predicate as FnPredicate;
7
8//
9mod always;
10mod never;
11
12pub use always::Predicate as AlwaysPredicate;
13pub use never::Predicate as NeverPredicate;