Struct PHYSICAL_MEMORY_DESCRIPTOR
#[repr(C)]pub struct PHYSICAL_MEMORY_DESCRIPTOR {
pub NumberOfRuns: u32,
pub NumberOfPages: u32,
pub Run: [PHYSICAL_MEMORY_RUN; 1],
}
Fields§
§NumberOfRuns: u32
§NumberOfPages: u32
§Run: [PHYSICAL_MEMORY_RUN; 1]
Trait Implementations§
§impl Clone for PHYSICAL_MEMORY_DESCRIPTOR
impl Clone for PHYSICAL_MEMORY_DESCRIPTOR
§fn clone(&self) -> PHYSICAL_MEMORY_DESCRIPTOR
fn clone(&self) -> PHYSICAL_MEMORY_DESCRIPTOR
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for PHYSICAL_MEMORY_DESCRIPTOR
Auto Trait Implementations§
impl Freeze for PHYSICAL_MEMORY_DESCRIPTOR
impl RefUnwindSafe for PHYSICAL_MEMORY_DESCRIPTOR
impl Send for PHYSICAL_MEMORY_DESCRIPTOR
impl Sync for PHYSICAL_MEMORY_DESCRIPTOR
impl Unpin for PHYSICAL_MEMORY_DESCRIPTOR
impl UnwindSafe for PHYSICAL_MEMORY_DESCRIPTOR
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