pub trait Overlaps<Rhs = Self> {
// Required method
fn overlaps(&self, rhs: &Rhs) -> bool;
}
Expand description
Tests if ranges overlaps
pub trait Overlaps<Rhs = Self> {
// Required method
fn overlaps(&self, rhs: &Rhs) -> bool;
}
Tests if ranges overlaps