[][src]Struct ironrdp::ConnectInitial

pub struct ConnectInitial {
    pub conference_create_request: ConferenceCreateRequest,
    pub calling_domain_selector: Vec<u8>,
    pub called_domain_selector: Vec<u8>,
    pub upward_flag: bool,
    pub target_parameters: DomainParameters,
    pub min_parameters: DomainParameters,
    pub max_parameters: DomainParameters,
}

Fields

conference_create_request: ConferenceCreateRequestcalling_domain_selector: Vec<u8>called_domain_selector: Vec<u8>upward_flag: booltarget_parameters: DomainParametersmin_parameters: DomainParametersmax_parameters: DomainParameters

Implementations

impl ConnectInitial[src]

pub fn with_gcc_blocks(gcc_blocks: ClientGccBlocks) -> Self[src]

pub fn channel_names(&self) -> Option<Vec<Channel>>[src]

Trait Implementations

impl Clone for ConnectInitial[src]

impl Debug for ConnectInitial[src]

impl PartialEq<ConnectInitial> for ConnectInitial[src]

impl PduParsing for ConnectInitial[src]

type Error = McsError

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