Struct limine_protocol::MemoryMapResponse
source · #[repr(C)]pub struct MemoryMapResponse {
pub revision: u64,
pub entry_count: u64,
pub entries: *const *const MemoryMapEntry,
}Expand description
Response to [MemoryMapRequest]
Fields§
§revision: u64The response revision number
entry_count: u64The amount of entries in the memory map
entries: *const *const MemoryMapEntryAn array of MemoryMapEntry pointers
Implementations§
source§impl MemoryMapResponse
impl MemoryMapResponse
sourcepub unsafe fn get_memory_map(&self) -> Option<&[&MemoryMapEntry]>
pub unsafe fn get_memory_map(&self) -> Option<&[&MemoryMapEntry]>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for MemoryMapResponse
impl !Send for MemoryMapResponse
impl !Sync for MemoryMapResponse
impl Unpin for MemoryMapResponse
impl UnwindSafe for MemoryMapResponse
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