#[repr(C)]pub struct OSVERSIONINFOEXW {
    pub dwOSVersionInfoSize: DWORD,
    pub dwMajorVersion: DWORD,
    pub dwMinorVersion: DWORD,
    pub dwBuildNumber: DWORD,
    pub dwPlatformId: DWORD,
    pub szCSDVersion: [WCHAR; 128],
    pub wServicePackMajor: WORD,
    pub wServicePackMinor: WORD,
    pub wSuiteMask: WORD,
    pub wProductType: BYTE,
    pub wReserved: BYTE,
}Fields
dwOSVersionInfoSize: DWORDdwMajorVersion: DWORDdwMinorVersion: DWORDdwBuildNumber: DWORDdwPlatformId: DWORDszCSDVersion: [WCHAR; 128]wServicePackMajor: WORDwServicePackMinor: WORDwSuiteMask: WORDwProductType: BYTEwReserved: BYTETrait Implementations
sourceimpl Clone for OSVERSIONINFOEXW
 
impl Clone for OSVERSIONINFOEXW
sourcefn clone(&self) -> OSVERSIONINFOEXW
 
fn clone(&self) -> OSVERSIONINFOEXW
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for OSVERSIONINFOEXW
Auto Trait Implementations
impl RefUnwindSafe for OSVERSIONINFOEXW
impl Send for OSVERSIONINFOEXW
impl Sync for OSVERSIONINFOEXW
impl Unpin for OSVERSIONINFOEXW
impl UnwindSafe for OSVERSIONINFOEXW
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