pub trait FiniteTracks { // Required method fn range(&self) -> (i64, i64); }
A finite set of tracks.
The range of valid indices, as a tuple (min, max).
(min, max)
The minimum acceptable index is min; the maximum acceptable index is max-1, which must be greater than or equal to min.
min
max-1