#[repr(C)]pub struct MemoryMapEntry {
pub base: u64,
pub length: u64,
pub kind: EntryType,
}Expand description
Entry in the Memory Map
Fields§
§base: u64The base address of the entry
length: u64The length of the entry
kind: EntryTypeThe type of the entry
Implementations§
Trait Implementations§
Source§impl Debug for MemoryMapEntry
impl Debug for MemoryMapEntry
Source§impl PartialEq for MemoryMapEntry
impl PartialEq for MemoryMapEntry
impl Eq for MemoryMapEntry
impl StructuralPartialEq for MemoryMapEntry
Auto Trait Implementations§
impl Freeze for MemoryMapEntry
impl RefUnwindSafe for MemoryMapEntry
impl Send for MemoryMapEntry
impl Sync for MemoryMapEntry
impl Unpin for MemoryMapEntry
impl UnwindSafe for MemoryMapEntry
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