Trait sourceview5::prelude::FilterExt

source ·
pub trait FilterExt: IsA<Filter> + Sealed + 'static {
    // Provided methods
    fn changed(&self, change: FilterChange) { ... }
    fn strictness(&self) -> FilterMatch { ... }
    fn match_(&self, item: &impl IsA<Object>) -> bool { ... }
    fn connect_changed<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, FilterChange) + 'static { ... }
}

Provided Methods§

source

fn changed(&self, change: FilterChange)

source

fn strictness(&self) -> FilterMatch

source

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

source

fn connect_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, FilterChange) + 'static,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> FilterExt for O
where O: IsA<Filter>,