pub trait _MemoryMap: Iterator<Item = &'static dyn MemoryMapping> + Index<usize, Output = dyn MemoryMapping> {
// Required method
fn len(&self) -> usize;
}
Expand description
Memory mapping.
Required Methods§
Sourcefn len(&self) -> usize
fn len(&self) -> usize
Returns the number of MemoryMappings in the MemoryMap. This is total, not remainder.