pub trait Predicate: Send + Sync {
// Required method
fn test(&self, entry: &Entry) -> bool;
}Expand description
A predicate that can be applied to entries
pub trait Predicate: Send + Sync {
// Required method
fn test(&self, entry: &Entry) -> bool;
}A predicate that can be applied to entries