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