[][src]Struct ironrdp::gcc::ClientCoreData

pub struct ClientCoreData {
    pub version: RdpVersion,
    pub desktop_width: u16,
    pub desktop_height: u16,
    pub color_depth: ColorDepth,
    pub sec_access_sequence: SecureAccessSequence,
    pub keyboard_layout: u32,
    pub client_build: u32,
    pub client_name: String,
    pub keyboard_type: KeyboardType,
    pub keyboard_subtype: u32,
    pub keyboard_functional_keys_count: u32,
    pub ime_file_name: String,
    pub optional_data: ClientCoreOptionalData,
}

Fields

version: RdpVersiondesktop_width: u16desktop_height: u16color_depth: ColorDepthsec_access_sequence: SecureAccessSequencekeyboard_layout: u32client_build: u32client_name: Stringkeyboard_type: KeyboardTypekeyboard_subtype: u32keyboard_functional_keys_count: u32ime_file_name: Stringoptional_data: ClientCoreOptionalData

Methods

impl ClientCoreData[src]

Trait Implementations

impl Clone for ClientCoreData[src]

impl Debug for ClientCoreData[src]

impl PartialEq<ClientCoreData> for ClientCoreData[src]

impl PduParsing for ClientCoreData[src]

type Error = CoreDataError

impl StructuralPartialEq for ClientCoreData[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> Same<T> for T

type Output = T

Should always be Self

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.