Trait Intersection

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

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

Required Associated Types§

Required Methods§

Source

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

Returns the intersection between self and other

Implementors§