Contains

Trait Contains 

Source
pub trait Contains<Rhs> {
    // Required method
    fn contains(&self, other: &Rhs) -> bool;
}

Required Methods§

Source

fn contains(&self, other: &Rhs) -> bool

Returns true if self contains other.

Implementors§