Trait gtk4::subclass::filter::FilterImpl

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

Provided Methods§

source

fn strictness(&self) -> FilterMatch

Gets the known strictness of @filters.

If the strictness is not known, FilterMatch::Some is returned.

This value may change after emission of the changed signal.

This function is meant purely for optimization purposes, filters can choose to omit implementing it, but FilterListModel uses it.

§Returns

the strictness of @self

source

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

Object Safety§

This trait is not object safe.

Implementors§