struct Range [src]

A range of indices within a bitset.

Fields

start: usizeThe index of the first bit of interest.
end: usizeThe index immediately after the last bit of interest.

Source

pub const Range = struct { /// The index of the first bit of interest. start: usize, /// The index immediately after the last bit of interest. end: usize, }