pub struct JoinGroupResponseV5 {
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<JoinGroupMemberV5>,
}Fields§
§throttle_time_ms: i32§error_code: i16§generation_id: i32§protocol_name: String§leader: String§member_id: String§members: Vec<JoinGroupMemberV5>Implementations§
Source§impl JoinGroupResponseV5
impl JoinGroupResponseV5
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for JoinGroupResponseV5
impl Clone for JoinGroupResponseV5
Source§fn clone(&self) -> JoinGroupResponseV5
fn clone(&self) -> JoinGroupResponseV5
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 JoinGroupResponseV5
impl Debug for JoinGroupResponseV5
impl Eq for JoinGroupResponseV5
Source§impl PartialEq for JoinGroupResponseV5
impl PartialEq for JoinGroupResponseV5
impl StructuralPartialEq for JoinGroupResponseV5
Auto Trait Implementations§
impl Freeze for JoinGroupResponseV5
impl RefUnwindSafe for JoinGroupResponseV5
impl Send for JoinGroupResponseV5
impl Sync for JoinGroupResponseV5
impl Unpin for JoinGroupResponseV5
impl UnsafeUnpin for JoinGroupResponseV5
impl UnwindSafe for JoinGroupResponseV5
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