[][src]Enum ironrdp::rdp::vc::dvc::gfx::CapabilitySet

pub enum CapabilitySet {
    V8 {
        flags: CapabilitiesV8Flags,
    },
    V8_1 {
        flags: CapabilitiesV81Flags,
    },
    V10 {
        flags: CapabilitiesV10Flags,
    },
    V10_1,
    V10_2 {
        flags: CapabilitiesV10Flags,
    },
    V10_3 {
        flags: CapabilitiesV103Flags,
    },
    V10_4 {
        flags: CapabilitiesV104Flags,
    },
    V10_5 {
        flags: CapabilitiesV104Flags,
    },
    V10_6 {
        flags: CapabilitiesV104Flags,
    },
    Unknown(Vec<u8>),
}

Variants

V8

Fields of V8

flags: CapabilitiesV8Flags
V8_1

Fields of V8_1

flags: CapabilitiesV81Flags
V10

Fields of V10

flags: CapabilitiesV10Flags
V10_1
V10_2

Fields of V10_2

flags: CapabilitiesV10Flags
V10_3

Fields of V10_3

flags: CapabilitiesV103Flags
V10_4

Fields of V10_4

flags: CapabilitiesV104Flags
V10_5

Fields of V10_5

flags: CapabilitiesV104Flags
V10_6

Fields of V10_6

flags: CapabilitiesV104Flags
Unknown(Vec<u8>)

Trait Implementations

impl Clone for CapabilitySet[src]

impl Debug for CapabilitySet[src]

impl PartialEq<CapabilitySet> for CapabilitySet[src]

impl PduParsing for CapabilitySet[src]

type Error = GraphicsMessagesError

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