Trait frame_support::traits::InstanceFilter
source · pub trait InstanceFilter<T>: Sized + Send + Sync {
fn filter(&self, _: &T) -> bool;
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§
Provided Methods§
sourcefn is_superset(&self, _o: &Self) -> bool
fn is_superset(&self, _o: &Self) -> bool
Determines whether self
matches at least everything that _o
does.