pub trait Filter<T> { fn filter(_: &T) -> bool; }
Simple trait for providing a filter over a reference to some type.
Determine if a given value should be allowed through the filter (returns true) or not.
true