[][src]Struct vmprotect_sys::VMProtectSerialNumberData

#[repr(C, packed)]pub struct VMProtectSerialNumberData {
    pub state: u32,
    pub user_name: [u16; 256],
    pub email: [u16; 256],
    pub expire: VMProtectDate,
    pub max_build: VMProtectDate,
    pub running_time: u32,
    pub user_data_length: u8,
    pub user_data: [u8; 255],
}

Fields

state: u32

State flags

user_name: [u16; 256]

User name

email: [u16; 256]

Email

expire: VMProtectDate

Date of serial number expiration

max_build: VMProtectDate

Max date of build, that will accept this key

running_time: u32

Running time in minutes

user_data_length: u8

Length of user data in bUserData

user_data: [u8; 255]

Up to 255 bytes of user data

Trait Implementations

impl Clone for VMProtectSerialNumberData[src]

impl Copy for VMProtectSerialNumberData[src]

impl Default for VMProtectSerialNumberData[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, 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.