pub trait Intersection<Rhs = Self> {
type Output;
// Required method
fn intersection(&self, rhs: &Rhs) -> Self::Output;
}Expand description
Defines the intersection of two sets.
pub trait Intersection<Rhs = Self> {
type Output;
// Required method
fn intersection(&self, rhs: &Rhs) -> Self::Output;
}Defines the intersection of two sets.