pub trait FilterExt: 'static {
fn changed(&self, change: FilterChange);
fn strictness(&self) -> FilterMatch;
fn match_(&self, item: &impl IsA<Object>) -> bool;
fn connect_changed<F: Fn(&Self, FilterChange) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Required Methods
source
fn changed(&self, change: FilterChange)
source
fn strictness(&self) -> FilterMatch
sourcefn connect_changed<F: Fn(&Self, FilterChange) + 'static>(