#[repr(C, packed(4))]pub struct MINIDUMP_SYSTEM_BASIC_INFORMATION {
pub TimerResolution: u32,
pub PageSize: u32,
pub NumberOfPhysicalPages: u32,
pub LowestPhysicalPageNumber: u32,
pub HighestPhysicalPageNumber: u32,
pub AllocationGranularity: u32,
pub MinimumUserModeAddress: u64,
pub MaximumUserModeAddress: u64,
pub ActiveProcessorsAffinityMask: u64,
pub NumberOfProcessors: u32,
}
Expand description
Required features: "Win32_System_Diagnostics_Debug"
Fields
TimerResolution: u32
PageSize: u32
NumberOfPhysicalPages: u32
LowestPhysicalPageNumber: u32
HighestPhysicalPageNumber: u32
AllocationGranularity: u32
MinimumUserModeAddress: u64
MaximumUserModeAddress: u64
ActiveProcessorsAffinityMask: u64
NumberOfProcessors: u32
Trait Implementations
impl Clone for MINIDUMP_SYSTEM_BASIC_INFORMATION
impl Clone for MINIDUMP_SYSTEM_BASIC_INFORMATION
impl Copy for MINIDUMP_SYSTEM_BASIC_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for MINIDUMP_SYSTEM_BASIC_INFORMATION
impl Send for MINIDUMP_SYSTEM_BASIC_INFORMATION
impl Sync for MINIDUMP_SYSTEM_BASIC_INFORMATION
impl Unpin for MINIDUMP_SYSTEM_BASIC_INFORMATION
impl UnwindSafe for MINIDUMP_SYSTEM_BASIC_INFORMATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more