[][src]Struct kf_protocol_message::group::KfJoinGroupResponse

pub struct KfJoinGroupResponse {
    pub throttle_time_ms: i32,
    pub error_code: ErrorCode,
    pub generation_id: i32,
    pub protocol_name: String,
    pub leader: String,
    pub member_id: String,
    pub members: Vec<JoinGroupResponseMember>,
}

Fields

throttle_time_ms: i32

The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.

error_code: ErrorCode

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

generation_id: i32

The generation ID of the group.

protocol_name: String

The group protocol selected by the coordinator.

leader: String

The leader of the group.

member_id: String

The member ID assigned by the group coordinator.

members: Vec<JoinGroupResponseMember>

Trait Implementations

impl Debug for KfJoinGroupResponse[src]

impl Decoder for KfJoinGroupResponse[src]

impl Default for KfJoinGroupResponse[src]

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

impl Encoder for KfJoinGroupResponse[src]

impl Serialize for KfJoinGroupResponse[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.