pub trait Intersect<Other> {
type Output;
// Required method
fn intersect(&self, other: &Other) -> Self::Output;
}pub trait Intersect<Other> {
type Output;
// Required method
fn intersect(&self, other: &Other) -> Self::Output;
}