Contains

Trait Contains 

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

Check containment of one object within another

Required Methods§

Source

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

Implementors§