pub trait ContainsPair<A, B> {
    fn contains(a: &A, b: &B) -> bool;
}
Expand description

A trait for querying whether a type can be said to “contain” a pair-value.

Required Methods§

Return true if this “contains” the pair-value (a, b).

Implementations on Foreign Types§

Implementors§