pub type Range = Range;
#[repr(C)]pub struct Range { pub start: u32, pub end: u32, }
start: u32
The start of the range (inclusive).
end: u32
The end of the range (exclusive).