pub trait IntersectionExt{
// Required method
fn intersection<J>(self, _: J) -> Intersection<Self, J>
where J: SortedIterator<Item = Self::Item, Ordering = Self::Ordering>;
}
Required Methods§
fn intersection<J>(self, _: J) -> Intersection<Self, J>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.