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

Required Methods§

Implementors§