pub trait Interval<Coord> where
    Coord: Copy
{ fn get(&self, d: Direction1D) -> Coord; fn start(&self) -> Coord { ... } fn end(&self) -> Coord { ... } }
Expand description

Describe an interval of coordinates by a start value and an end value.

Required Methods

Get the low or high end.

Provided Methods

Get the low end.

Get the high end.

Implementors