pub trait Intersection<RHS = Self> {
type Output;
// Required method
fn intersection(&self, rhs: &RHS) -> Self::Output;
}pub trait Intersection<RHS = Self> {
type Output;
// Required method
fn intersection(&self, rhs: &RHS) -> Self::Output;
}