pub trait Filter<T> {
    // Required method
    fn filter(t: &T) -> bool;
}
👎Deprecated: Use Contains instead

Required Methods§

source

fn filter(t: &T) -> bool

👎Deprecated: Use Contains instead

Implementors§

source§

impl<T, C: Contains<T>> Filter<T> for C