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

Required Methods§

source

fn contains(&self, item: Option<T>) -> bool

Implementors§