#[repr(C)]pub struct OSVERSIONINFOEXA {
pub dwOSVersionInfoSize: DWORD,
pub dwMajorVersion: DWORD,
pub dwMinorVersion: DWORD,
pub dwBuildNumber: DWORD,
pub dwPlatformId: DWORD,
pub szCSDVersion: [CHAR; 128],
pub wServicePackMajor: WORD,
pub wServicePackMinor: WORD,
pub wSuiteMask: WORD,
pub wProductType: BYTE,
pub wReserved: BYTE,
}
Fields§
§dwOSVersionInfoSize: DWORD
§dwMajorVersion: DWORD
§dwMinorVersion: DWORD
§dwBuildNumber: DWORD
§dwPlatformId: DWORD
§szCSDVersion: [CHAR; 128]
§wServicePackMajor: WORD
§wServicePackMinor: WORD
§wSuiteMask: WORD
§wProductType: BYTE
§wReserved: BYTE
Trait Implementations§
Source§impl Clone for OSVERSIONINFOEXA
impl Clone for OSVERSIONINFOEXA
Source§fn clone(&self) -> OSVERSIONINFOEXA
fn clone(&self) -> OSVERSIONINFOEXA
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 OSVERSIONINFOEXA
Auto Trait Implementations§
impl Freeze for OSVERSIONINFOEXA
impl RefUnwindSafe for OSVERSIONINFOEXA
impl Send for OSVERSIONINFOEXA
impl Sync for OSVERSIONINFOEXA
impl Unpin for OSVERSIONINFOEXA
impl UnwindSafe for OSVERSIONINFOEXA
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