pub trait ContainsPair<A, B> { fn contains(a: &A, b: &B) -> bool; }
A trait for querying whether a type can be said to “contain” a pair-value.
Return true if this “contains” the pair-value (a, b).
true
(a, b)