pub struct JoinGroupResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub generation_id: i32,
pub protocol_type: Option<String>,
pub protocol_name: Option<String>,
pub leader: String,
pub skip_assignment: bool,
pub member_id: String,
pub members: Vec<JoinGroupResponseMember>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§throttle_time_ms: i32The 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: i16The error code, or 0 if there was no error.
generation_id: i32The generation ID of the group.
protocol_type: Option<String>The group protocol name.
protocol_name: Option<String>The group protocol selected by the coordinator.
leader: StringThe leader of the group.
skip_assignment: boolTrue if the leader must skip running the assignment.
member_id: StringThe member id assigned by the group coordinator.
members: Vec<JoinGroupResponseMember>§unknown_tagged_fields: Vec<RawTaggedField>Unknown tagged fields.
Trait Implementations§
Source§impl Clone for JoinGroupResponse
impl Clone for JoinGroupResponse
Source§fn clone(&self) -> JoinGroupResponse
fn clone(&self) -> JoinGroupResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JoinGroupResponse
impl Debug for JoinGroupResponse
Source§impl Default for JoinGroupResponse
impl Default for JoinGroupResponse
Source§fn default() -> JoinGroupResponse
fn default() -> JoinGroupResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for JoinGroupResponse
impl RefUnwindSafe for JoinGroupResponse
impl Send for JoinGroupResponse
impl Sync for JoinGroupResponse
impl Unpin for JoinGroupResponse
impl UnwindSafe for JoinGroupResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more