pub trait ItemFilter<Item> {
    // Required method
    fn should_include(&self, credential: &Item) -> bool;
}
Expand description

Generic filter.

Required Methods§

source

fn should_include(&self, credential: &Item) -> bool

Implementors§