Predicate

Trait Predicate 

Source
pub trait Predicate: Send + Sync {
    // Required method
    fn test(&self, entry: &Entry) -> bool;
}
Expand description

A predicate that can be applied to entries

Required Methods§

Source

fn test(&self, entry: &Entry) -> bool

Implementors§