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