Struct USER_ACCOUNT_INFORMATION

Source
#[repr(C, packed(4))]
pub struct USER_ACCOUNT_INFORMATION {
Show 18 fields 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 AdminComment: UNICODE_STRING, pub WorkStations: UNICODE_STRING, pub LastLogon: LARGE_INTEGER, pub LastLogoff: LARGE_INTEGER, pub LogonHours: LOGON_HOURS, pub BadPasswordCount: USHORT, pub LogonCount: USHORT, pub PasswordLastSet: LARGE_INTEGER, pub AccountExpires: LARGE_INTEGER, pub UserAccountControl: ULONG,
}

Fields§

§UserName: UNICODE_STRING§FullName: UNICODE_STRING§UserId: ULONG§PrimaryGroupId: ULONG§HomeDirectory: UNICODE_STRING§HomeDirectoryDrive: UNICODE_STRING§ScriptPath: UNICODE_STRING§ProfilePath: UNICODE_STRING§AdminComment: UNICODE_STRING§WorkStations: UNICODE_STRING§LastLogon: LARGE_INTEGER§LastLogoff: LARGE_INTEGER§LogonHours: LOGON_HOURS§BadPasswordCount: USHORT§LogonCount: USHORT§PasswordLastSet: LARGE_INTEGER§AccountExpires: LARGE_INTEGER§UserAccountControl: ULONG

Trait Implementations§

Source§

impl Clone for USER_ACCOUNT_INFORMATION

Source§

fn clone(&self) -> USER_ACCOUNT_INFORMATION

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for USER_ACCOUNT_INFORMATION

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.