[][src]Enum ironrdp::rdp::capability_sets::CapabilitySet

pub enum CapabilitySet {
    General(General),
    Bitmap(Bitmap),
    Order(Order),
    BitmapCache(BitmapCache),
    BitmapCacheRev2(BitmapCacheRev2),
    Pointer(Pointer),
    Sound(Sound),
    Input(Input),
    Brush(Brush),
    GlyphCache(GlyphCache),
    OffscreenBitmapCache(OffscreenBitmapCache),
    VirtualChannel(VirtualChannel),
    Control(Vec<u8>),
    WindowActivation(Vec<u8>),
    Share(Vec<u8>),
    Font(Vec<u8>),
    BitmapCacheHostSupport(Vec<u8>),
    DesktopComposition(Vec<u8>),
    MultiFragmentUpdate(MultifragmentUpdate),
    LargePointer(LargePointer),
    SurfaceCommands(SurfaceCommands),
    BitmapCodecs(BitmapCodecs),
    ColorCache(Vec<u8>),
    DrawNineGridCache(Vec<u8>),
    DrawGdiPlus(Vec<u8>),
    Rail(Vec<u8>),
    WindowList(Vec<u8>),
    FrameAcknowledge(FrameAcknowledge),
}

Variants

General(General)
Bitmap(Bitmap)
Order(Order)
BitmapCache(BitmapCache)
BitmapCacheRev2(BitmapCacheRev2)
Pointer(Pointer)
Sound(Sound)
Input(Input)
Brush(Brush)
GlyphCache(GlyphCache)
OffscreenBitmapCache(OffscreenBitmapCache)
VirtualChannel(VirtualChannel)
Control(Vec<u8>)
WindowActivation(Vec<u8>)
Share(Vec<u8>)
Font(Vec<u8>)
BitmapCacheHostSupport(Vec<u8>)
DesktopComposition(Vec<u8>)
MultiFragmentUpdate(MultifragmentUpdate)
LargePointer(LargePointer)
SurfaceCommands(SurfaceCommands)
BitmapCodecs(BitmapCodecs)
ColorCache(Vec<u8>)
DrawNineGridCache(Vec<u8>)
DrawGdiPlus(Vec<u8>)
Rail(Vec<u8>)
WindowList(Vec<u8>)
FrameAcknowledge(FrameAcknowledge)

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 = CapabilitySetsError

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.