[][src]Struct kf_protocol::message::group::DescribedGroup

pub struct DescribedGroup {
    pub error_code: ErrorCode,
    pub group_id: String,
    pub group_state: String,
    pub protocol_type: String,
    pub protocol_data: String,
    pub members: Vec<DescribedGroupMember>,
}

Fields

error_code: ErrorCode

The describe error, or 0 if there was no error.

group_id: String

The group ID string.

group_state: String

The group state string, or the empty string.

protocol_type: String

The group protocol type, or the empty string.

protocol_data: String

The group protocol data, or the empty string.

members: Vec<DescribedGroupMember>

The group members.

Trait Implementations

impl Debug for DescribedGroup[src]

impl Decoder for DescribedGroup[src]

impl Default for DescribedGroup[src]

impl<'de> Deserialize<'de> for DescribedGroup[src]

impl Encoder for DescribedGroup[src]

impl Serialize for DescribedGroup[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.