[][src]Struct ironrdp::VirtualChannel

pub struct VirtualChannel {
    pub flags: VirtualChannelFlags,
    pub chunk_size: Option<u32>,
}

The VirtualChannel structure is used to advertise virtual channel support characteristics. This capability is sent by both client and server.

Fields

  • flags - virtual channel compression flags
  • chunk_size - when sent from server to client, this field contains the maximum allowed size of a virtual channel chunk and MUST be greater than or equal to 1600 and less than or equal to 16256. When sent from client to server, the value in this field is ignored by the server. This value is not verified in IronRDP and MUST be verified on the caller's side

MSDN

Fields

flags: VirtualChannelFlagschunk_size: Option<u32>

Trait Implementations

impl Clone for VirtualChannel[src]

impl Debug for VirtualChannel[src]

impl PartialEq<VirtualChannel> for VirtualChannel[src]

impl PduParsing for VirtualChannel[src]

type Error = CapabilitySetsError

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