pub trait RangeExt {
// Required method
fn intersect(&self, rhs: &Self) -> Self;
}Expand description
Provides convenience methods for Range.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".