pub trait Union<Rhs> { type Output; // Required method fn union(&self, other: &Rhs) -> Self::Output; }
Returns the set union of self and other.
self
other