[][src]Struct ntapi::ntsam::USER_LOGON_INFORMATION

#[repr(C)]#[repr(packed(4))]pub struct USER_LOGON_INFORMATION {
    pub UserName: UNICODE_STRING,
    pub FullName: UNICODE_STRING,
    pub UserId: ULONG,
    pub PrimaryGroupId: ULONG,
    pub HomeDirectory: UNICODE_STRING,
    pub HomeDirectoryDrive: UNICODE_STRING,
    pub ScriptPath: UNICODE_STRING,
    pub ProfilePath: UNICODE_STRING,
    pub WorkStations: UNICODE_STRING,
    pub LastLogon: LARGE_INTEGER,
    pub LastLogoff: LARGE_INTEGER,
    pub PasswordLastSet: LARGE_INTEGER,
    pub PasswordCanChange: LARGE_INTEGER,
    pub PasswordMustChange: LARGE_INTEGER,
    pub LogonHours: LOGON_HOURS,
    pub BadPasswordCount: USHORT,
    pub LogonCount: USHORT,
    pub UserAccountControl: ULONG,
}

Fields

UserName: UNICODE_STRINGFullName: UNICODE_STRINGUserId: ULONGPrimaryGroupId: ULONGHomeDirectory: UNICODE_STRINGHomeDirectoryDrive: UNICODE_STRINGScriptPath: UNICODE_STRINGProfilePath: UNICODE_STRINGWorkStations: UNICODE_STRINGLastLogon: LARGE_INTEGERLastLogoff: LARGE_INTEGERPasswordLastSet: LARGE_INTEGERPasswordCanChange: LARGE_INTEGERPasswordMustChange: LARGE_INTEGERLogonHours: LOGON_HOURSBadPasswordCount: USHORTLogonCount: USHORTUserAccountControl: ULONG

Trait Implementations

impl Clone for USER_LOGON_INFORMATION[src]

impl Copy for USER_LOGON_INFORMATION[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, 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.