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