pub trait Intersection<RHS = Self> {
type Output;
// Required method
fn intersection(&self, rhs: &RHS) -> Self::Output;
}Required Associated Types§
Required Methods§
fn intersection(&self, rhs: &RHS) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".