Trait kas::updatable::Filter[][src]

pub trait Filter<T>: 'static + Debug {
    fn matches(&self, item: T) -> bool;
}
Expand description

Types usable as a filter

Required methods

Returns true if the given item matches this filter

Implementations on Foreign Types

Implementors