[][src]Struct ironrdp::gcc::ClientCoreOptionalData

pub struct ClientCoreOptionalData {
    pub post_beta_color_depth: Option<ColorDepth>,
    pub client_product_id: Option<u16>,
    pub serial_number: Option<u32>,
    pub high_color_depth: Option<HighColorDepth>,
    pub supported_color_depths: Option<SupportedColorDepths>,
    pub early_capability_flags: Option<ClientEarlyCapabilityFlags>,
    pub dig_product_id: Option<String>,
    pub connection_type: Option<ConnectionType>,
    pub server_selected_protocol: Option<SecurityProtocol>,
    pub desktop_physical_width: Option<u32>,
    pub desktop_physical_height: Option<u32>,
    pub desktop_orientation: Option<u16>,
    pub desktop_scale_factor: Option<u32>,
    pub device_scale_factor: Option<u32>,
}

Fields

post_beta_color_depth: Option<ColorDepth>client_product_id: Option<u16>serial_number: Option<u32>high_color_depth: Option<HighColorDepth>supported_color_depths: Option<SupportedColorDepths>early_capability_flags: Option<ClientEarlyCapabilityFlags>dig_product_id: Option<String>connection_type: Option<ConnectionType>server_selected_protocol: Option<SecurityProtocol>desktop_physical_width: Option<u32>desktop_physical_height: Option<u32>desktop_orientation: Option<u16>desktop_scale_factor: Option<u32>device_scale_factor: Option<u32>

Trait Implementations

impl Clone for ClientCoreOptionalData[src]

impl Debug for ClientCoreOptionalData[src]

impl Default for ClientCoreOptionalData[src]

impl PartialEq<ClientCoreOptionalData> for ClientCoreOptionalData[src]

impl PduParsing for ClientCoreOptionalData[src]

type Error = CoreDataError

impl StructuralPartialEq for ClientCoreOptionalData[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.