pub struct JoinGroupResponseV2 {
pub throttle_time_ms: i32,
pub error_code: i16,
pub generation_id: i32,
pub protocol_name: String,
pub leader: String,
pub member_id: String,
pub members: Vec<JoinGroupMember>,
}Fields§
§throttle_time_ms: i32§error_code: i16§generation_id: i32§protocol_name: String§leader: String§member_id: String§members: Vec<JoinGroupMember>Implementations§
Source§impl JoinGroupResponseV2
impl JoinGroupResponseV2
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for JoinGroupResponseV2
impl Clone for JoinGroupResponseV2
Source§fn clone(&self) -> JoinGroupResponseV2
fn clone(&self) -> JoinGroupResponseV2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JoinGroupResponseV2
impl Debug for JoinGroupResponseV2
impl Eq for JoinGroupResponseV2
Source§impl PartialEq for JoinGroupResponseV2
impl PartialEq for JoinGroupResponseV2
impl StructuralPartialEq for JoinGroupResponseV2
Auto Trait Implementations§
impl Freeze for JoinGroupResponseV2
impl RefUnwindSafe for JoinGroupResponseV2
impl Send for JoinGroupResponseV2
impl Sync for JoinGroupResponseV2
impl Unpin for JoinGroupResponseV2
impl UnsafeUnpin for JoinGroupResponseV2
impl UnwindSafe for JoinGroupResponseV2
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