[][src]Struct memflow_win32::kernel::Win32Version

#[repr(C)]pub struct Win32Version { /* fields omitted */ }

Implementations

impl Win32Version[src]

pub fn new(
    nt_major_version: u32,
    nt_minor_version: u32,
    nt_build_number: u32
) -> Self
[src]

pub fn mask_build_number(self) -> Self[src]

pub fn major_version(&self) -> u32[src]

pub fn minor_version(&self) -> u32[src]

pub fn build_number(&self) -> u32[src]

pub fn is_checked_build(&self) -> bool[src]

pub fn as_tuple(&self) -> (u32, u32, u32)[src]

Trait Implementations

impl Clone for Win32Version[src]

impl Copy for Win32Version[src]

impl Debug for Win32Version[src]

impl Default for Win32Version[src]

impl Display for Win32Version[src]

impl Eq for Win32Version[src]

impl From<(u32, u32, u32)> for Win32Version[src]

impl From<(u32, u32)> for Win32Version[src]

impl Ord for Win32Version[src]

impl PartialEq<Win32Version> for Win32Version[src]

impl PartialOrd<Win32Version> for Win32Version[src]

impl Serialize for Win32Version[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.