pub trait FilterImplExt: ObjectSubclass {
    // Required methods
    fn parent_strictness(&self, filter: &Self::Type) -> FilterMatch;
    fn parent_match_(&self, filter: &Self::Type, item: &Object) -> bool;
}

Required Methods§

source

fn parent_strictness(&self, filter: &Self::Type) -> FilterMatch

source

fn parent_match_(&self, filter: &Self::Type, item: &Object) -> bool

Implementors§