pub type Interval = Range<usize>;
struct Interval { pub start: usize, pub end: usize, }
start: usize
The lower bound of the range (inclusive).
end: usize
The upper bound of the range (exclusive).