pub trait Contains<T> { fn contains(t: &T) -> bool; }
A trait for querying whether a type can be said to “contain” a value.
Return true if this “contains” the given value t.
true
t