Trait collision::Union [] [src]

pub trait Union<RHS = Self> {
    type Output;
    fn union(&self, _: &RHS) -> Self::Output;
}

Build the union of two shapes.

Associated Types

Union shape created

Required Methods

Build the union shape of self and the given shape.

Implementors