Trait FilterImpl

Source
pub trait FilterImpl: ObjectImpl + ObjectSubclass<Type: IsA<Filter>> {
    // 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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§