Struct bootloader::boot_info::MemoryRegion
source · [−]#[repr(C)]pub struct MemoryRegion {
pub start: u64,
pub end: u64,
pub kind: MemoryRegionKind,
}
Expand description
Represent a physical memory region.
Fields
start: u64
The physical start address of the region.
end: u64
The physical end address (exclusive) of the region.
kind: MemoryRegionKind
The memory type of the memory region.
Only Usable
regions can be freely used.
Implementations
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.