pub trait MemoryMapping {
// Required methods
fn get_type(&self) -> MemoryType;
fn get_start(&self) -> u64;
fn get_length(&self) -> u64;
}
Expand description
A single memory mapping for MemoryMap.
Required Methods§
Sourcefn get_type(&self) -> MemoryType
fn get_type(&self) -> MemoryType
Returns the type of the memory.
Sourcefn get_length(&self) -> u64
fn get_length(&self) -> u64
Returns the length of the memory.