pub trait Subset<Rhs> { // Required method fn is_subset(&self, other: &Rhs) -> bool; }
Returns true if self is a subset of other.
true
self
other