Trait Union

Source
pub trait Union<Rhs = Self> {
    type Output;

    // Required method
    fn union(&self, rhs: &Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn union(&self, rhs: &Rhs) -> Self::Output

Returns the union between self and other

Implementors§