pub trait Contains<T> {
// Required method
fn contains(&self, other: &T) -> bool;
}Expand description
Check containment of one object within another
pub trait Contains<T> {
// Required method
fn contains(&self, other: &T) -> bool;
}Check containment of one object within another