pub struct MemoryRegion {
pub start_address: usize,
pub end_address: usize,
pub region_type: MemoryRegionType,
}
Expand description
A region in physical memory as indicated in the memory map.
Fields§
§start_address: usize
§end_address: usize
§region_type: MemoryRegionType
Implementations§
Trait Implementations§
Source§impl Debug for MemoryRegion
impl Debug for MemoryRegion
Source§impl Display for MemoryRegion
impl Display for MemoryRegion
Source§impl PartialEq for MemoryRegion
impl PartialEq for MemoryRegion
impl StructuralPartialEq for MemoryRegion
Auto Trait Implementations§
impl Freeze for MemoryRegion
impl RefUnwindSafe for MemoryRegion
impl Send for MemoryRegion
impl Sync for MemoryRegion
impl Unpin for MemoryRegion
impl UnwindSafe for MemoryRegion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more