pub trait InstanceFilter<T>: Sized + Send + Sync {
    // Required method
    fn filter(&self, _: &T) -> bool;

    // Provided method
    fn is_superset(&self, _o: &Self) -> bool { ... }
}
Expand description

Simple trait for providing a filter over a reference to some type, given an instance of itself.

Required Methods§

source

fn filter(&self, _: &T) -> bool

Determine if a given value should be allowed through the filter (returns true) or not.

Provided Methods§

source

fn is_superset(&self, _o: &Self) -> bool

Determines whether self matches at least everything that _o does.

Implementations on Foreign Types§

source§

impl<T> InstanceFilter<T> for ()

source§

fn filter(&self, _: &T) -> bool

source§

fn is_superset(&self, _o: &Self) -> bool

Implementors§