Struct libc::types::os::arch::extra::SYSTEM_INFO [] [src]

pub struct SYSTEM_INFO {
    pub wProcessorArchitecture: WORD,
    pub wReserved: WORD,
    pub dwPageSize: DWORD,
    pub lpMinimumApplicationAddress: LPVOID,
    pub lpMaximumApplicationAddress: LPVOID,
    pub dwActiveProcessorMask: uintptr_t,
    pub dwNumberOfProcessors: DWORD,
    pub dwProcessorType: DWORD,
    pub dwAllocationGranularity: DWORD,
    pub wProcessorLevel: WORD,
    pub wProcessorRevision: WORD,
}

Fields

wProcessorArchitecture: WORD wReserved: WORD dwPageSize: DWORD lpMinimumApplicationAddress: LPVOID lpMaximumApplicationAddress: LPVOID dwActiveProcessorMask: uintptr_t dwNumberOfProcessors: DWORD dwProcessorType: DWORD dwAllocationGranularity: DWORD wProcessorLevel: WORD wProcessorRevision: WORD

Trait Implementations

impl Clone for SYSTEM_INFO
[src]

fn clone(&self) -> SYSTEM_INFO

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for SYSTEM_INFO
[src]