windows::Win32::System::RemoteDesktop

Struct WTS_CLIENT_DATA

#[repr(C)]
pub struct WTS_CLIENT_DATA {
Show 55 fields pub fDisableCtrlAltDel: bool, pub fDoubleClickDetect: bool, pub fEnableWindowsKey: bool, pub fHideTitleBar: bool, pub fInheritAutoLogon: BOOL, pub fPromptForPassword: bool, pub fUsingSavedCreds: bool, pub Domain: [u16; 256], pub UserName: [u16; 256], pub Password: [u16; 256], pub fPasswordIsScPin: bool, pub fInheritInitialProgram: BOOL, pub WorkDirectory: [u16; 257], pub InitialProgram: [u16; 257], pub fMaximizeShell: bool, pub EncryptionLevel: u8, pub PerformanceFlags: u32, pub ProtocolName: [u16; 9], pub ProtocolType: u16, pub fInheritColorDepth: BOOL, pub HRes: u16, pub VRes: u16, pub ColorDepth: u16, pub DisplayDriverName: [u16; 9], pub DisplayDeviceName: [u16; 20], pub fMouse: bool, pub KeyboardLayout: u32, pub KeyboardType: u32, pub KeyboardSubType: u32, pub KeyboardFunctionKey: u32, pub imeFileName: [u16; 33], pub ActiveInputLocale: u32, pub fNoAudioPlayback: bool, pub fRemoteConsoleAudio: bool, pub AudioDriverName: [u16; 9], pub ClientTimeZone: WTS_TIME_ZONE_INFORMATION, pub ClientName: [u16; 21], pub SerialNumber: u32, pub ClientAddressFamily: u32, pub ClientAddress: [u16; 31], pub ClientSockAddress: WTS_SOCKADDR, pub ClientDirectory: [u16; 257], pub ClientBuildNumber: u32, pub ClientProductId: u16, pub OutBufCountHost: u16, pub OutBufCountClient: u16, pub OutBufLength: u16, pub ClientSessionId: u32, pub ClientDigProductId: [u16; 33], pub fDisableCpm: bool, pub fDisableCdm: bool, pub fDisableCcm: bool, pub fDisableLPT: bool, pub fDisableClip: bool, pub fDisablePNP: bool,
}

Fields§

§fDisableCtrlAltDel: bool§fDoubleClickDetect: bool§fEnableWindowsKey: bool§fHideTitleBar: bool§fInheritAutoLogon: BOOL§fPromptForPassword: bool§fUsingSavedCreds: bool§Domain: [u16; 256]§UserName: [u16; 256]§Password: [u16; 256]§fPasswordIsScPin: bool§fInheritInitialProgram: BOOL§WorkDirectory: [u16; 257]§InitialProgram: [u16; 257]§fMaximizeShell: bool§EncryptionLevel: u8§PerformanceFlags: u32§ProtocolName: [u16; 9]§ProtocolType: u16§fInheritColorDepth: BOOL§HRes: u16§VRes: u16§ColorDepth: u16§DisplayDriverName: [u16; 9]§DisplayDeviceName: [u16; 20]§fMouse: bool§KeyboardLayout: u32§KeyboardType: u32§KeyboardSubType: u32§KeyboardFunctionKey: u32§imeFileName: [u16; 33]§ActiveInputLocale: u32§fNoAudioPlayback: bool§fRemoteConsoleAudio: bool§AudioDriverName: [u16; 9]§ClientTimeZone: WTS_TIME_ZONE_INFORMATION§ClientName: [u16; 21]§SerialNumber: u32§ClientAddressFamily: u32§ClientAddress: [u16; 31]§ClientSockAddress: WTS_SOCKADDR§ClientDirectory: [u16; 257]§ClientBuildNumber: u32§ClientProductId: u16§OutBufCountHost: u16§OutBufCountClient: u16§OutBufLength: u16§ClientSessionId: u32§ClientDigProductId: [u16; 33]§fDisableCpm: bool§fDisableCdm: bool§fDisableCcm: bool§fDisableLPT: bool§fDisableClip: bool§fDisablePNP: bool

Trait Implementations§

§

impl Clone for WTS_CLIENT_DATA

§

fn clone(&self) -> WTS_CLIENT_DATA

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

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

Performs copy-assignment from source. Read more
§

impl Default for WTS_CLIENT_DATA

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl Copy for WTS_CLIENT_DATA

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.