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