pub trait Union<T>where T: ?Sized,{ type Output; // Required method fn union(&self, other: &T) -> Self::Output; }
Trait for calculating the union with another geometric object.
The type of the output shape representing the union.
Calculates the union of this shape with other.
other