pub trait Contains<T> {
    fn contains(&self, x: T, y: T) -> bool;
}

Required Methods

Implementors