pub trait FiniteTracks {
    // Required method
    fn range(&self) -> (i64, i64);
}
Expand description

A finite set of tracks.

Required Methods§

source

fn range(&self) -> (i64, i64)

The range of valid indices, as a tuple (min, max).

The minimum acceptable index is min; the maximum acceptable index is max-1, which must be greater than or equal to min.

Implementors§