KeyFilter

Trait KeyFilter 

Source
pub trait KeyFilter<V: ?Sized> {
    // Required method
    fn filter(&self, value: &V) -> bool;
}

Required Methods§

Source

fn filter(&self, value: &V) -> bool

Implementations on Foreign Types§

Source§

impl KeyFilter<str> for str

Source§

fn filter(&self, value: &str) -> bool

Source§

impl KeyFilter<str> for Vec<String>

Source§

fn filter(&self, value: &str) -> bool

Implementors§