#[repr(C)]pub struct MemoryDescriptor {
pub memory_type: MemoryType,
pub physical_start: u64,
pub virtual_start: u64,
pub page_count: u64,
pub attributes: MemoryAttributes,
}Fields§
§memory_type: MemoryType§physical_start: u64§virtual_start: u64§page_count: u64§attributes: MemoryAttributesAuto Trait Implementations§
impl Freeze for MemoryDescriptor
impl RefUnwindSafe for MemoryDescriptor
impl Send for MemoryDescriptor
impl Sync for MemoryDescriptor
impl Unpin for MemoryDescriptor
impl UnwindSafe for MemoryDescriptor
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