#[repr(C)]pub struct SYSTEM_INFO {
pub u: SYSTEM_INFO_u,
pub dwPageSize: DWORD,
pub lpMinimumApplicationAddress: LPVOID,
pub lpMaximumApplicationAddress: LPVOID,
pub dwActiveProcessorMask: DWORD_PTR,
pub dwNumberOfProcessors: DWORD,
pub dwProcessorType: DWORD,
pub dwAllocationGranularity: DWORD,
pub wProcessorLevel: WORD,
pub wProcessorRevision: WORD,
}
Fields§
§u: SYSTEM_INFO_u
§dwPageSize: DWORD
§lpMinimumApplicationAddress: LPVOID
§lpMaximumApplicationAddress: LPVOID
§dwActiveProcessorMask: DWORD_PTR
§dwNumberOfProcessors: DWORD
§dwProcessorType: DWORD
§dwAllocationGranularity: DWORD
§wProcessorLevel: WORD
§wProcessorRevision: WORD
Trait Implementations§
Source§impl Clone for SYSTEM_INFO
impl Clone for SYSTEM_INFO
Source§fn clone(&self) -> SYSTEM_INFO
fn clone(&self) -> SYSTEM_INFO
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 SYSTEM_INFO
Auto Trait Implementations§
impl Freeze for SYSTEM_INFO
impl RefUnwindSafe for SYSTEM_INFO
impl !Send for SYSTEM_INFO
impl !Sync for SYSTEM_INFO
impl Unpin for SYSTEM_INFO
impl UnwindSafe for SYSTEM_INFO
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