pub trait Intersect {
// Required method
fn intersect<'a>(iter: impl Iterator<Item = &'a Self>) -> Option<Self>
where Self: Sized + 'a;
}Expand description
Intersect zero or more &Self to create Option<Self>.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".