pub trait Disjoint<Rhs> {
// Required method
fn is_disjoint(&self, other: &Rhs) -> bool;
}Required Methods§
Sourcefn is_disjoint(&self, other: &Rhs) -> bool
fn is_disjoint(&self, other: &Rhs) -> bool
Returns true if the range is disjoint with other.