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

Provided methods

Implementors