pub type MemoryRange = Range<BufferAddress>;
struct MemoryRange { pub start: u64, pub end: u64, }
start: u64
The lower bound of the range (inclusive).
end: u64
The upper bound of the range (exclusive).