pub trait Intersection<Rhs = Self> {
type Output;
// Required method
fn intersection(&self, rhs: &Rhs) -> Self::Output;
}Required Associated Types§
Required Methods§
Sourcefn intersection(&self, rhs: &Rhs) -> Self::Output
fn intersection(&self, rhs: &Rhs) -> Self::Output
Returns the intersection between self and other