[][src]Struct wayk_proto::message::connection_sequence::associate::NowAssociateResponseMsg

pub struct NowAssociateResponseMsg {
    pub flags: AssociateResponseFlags,
    pub session_id: u32,
    pub status: NowStatus<AssociateStatusCode>,
    // some fields omitted
}

Fields

flags: AssociateResponseFlagssession_id: u32status: NowStatus<AssociateStatusCode>

Implementations

impl NowAssociateResponseMsg[src]

pub const SUBTYPE: AssociateMessageType[src]

pub fn new(
    flags: AssociateResponseFlags,
    status: NowStatus<AssociateStatusCode>
) -> Self
[src]

pub fn new_with_session_id(
    flags: AssociateResponseFlags,
    status: NowStatus<AssociateStatusCode>,
    session_id: u32
) -> Self
[src]

Trait Implementations

impl Clone for NowAssociateResponseMsg[src]

impl Debug for NowAssociateResponseMsg[src]

impl<'dec> Decode<'dec> for NowAssociateResponseMsg[src]

impl Default for NowAssociateResponseMsg[src]

impl Encode for NowAssociateResponseMsg[src]

impl From<NowAssociateResponseMsg> for NowAssociateMsg[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> 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.