type Range = Range<u16>;

Aliased Type§

struct Range {
    pub start: u16,
    pub end: u16,
}

Fields§

§start: u16

The lower bound of the range (inclusive).

§end: u16

The upper bound of the range (exclusive).