pub trait Intersects<T = Self> {
    type Result;

    fn intersect(self, other: T) -> Option<Self::Result>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors