pub trait FilterImpl: FilterImplExt + ObjectImpl {
    // Provided methods
    fn strictness(&self) -> FilterMatch { ... }
    fn match_(&self, item: &Object) -> bool { ... }
}

Provided Methods§

source

fn strictness(&self) -> FilterMatch

source

fn match_(&self, item: &Object) -> bool

Implementors§