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