pub struct JoinGroupResponse<'a> {
pub throttle_time_ms: i32,
pub error_code: i16,
pub generation_id: i32,
pub protocol_type: Option<&'a str>,
pub protocol_name: Option<&'a str>,
pub leader: &'a str,
pub skip_assignment: bool,
pub member_id: &'a str,
pub members: Vec<JoinGroupResponseMember<'a>>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§throttle_time_ms: i32§error_code: i16§generation_id: i32§protocol_type: Option<&'a str>§protocol_name: Option<&'a str>§leader: &'a str§skip_assignment: bool§member_id: &'a str§members: Vec<JoinGroupResponseMember<'a>>§unknown_tagged_fields: UnknownTaggedFieldsImplementations§
Source§impl JoinGroupResponse<'_>
impl JoinGroupResponse<'_>
pub fn to_owned(&self) -> JoinGroupResponse
Trait Implementations§
Source§impl<'a> Clone for JoinGroupResponse<'a>
impl<'a> Clone for JoinGroupResponse<'a>
Source§fn clone(&self) -> JoinGroupResponse<'a>
fn clone(&self) -> JoinGroupResponse<'a>
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<'a> Debug for JoinGroupResponse<'a>
impl<'a> Debug for JoinGroupResponse<'a>
Source§impl<'de> DecodeBorrow<'de> for JoinGroupResponse<'de>
impl<'de> DecodeBorrow<'de> for JoinGroupResponse<'de>
fn decode_borrow( buf: &mut &'de [u8], version: i16, ) -> Result<Self, ProtocolError>
Source§impl Default for JoinGroupResponse<'_>
impl Default for JoinGroupResponse<'_>
Source§impl Encode for JoinGroupResponse<'_>
impl Encode for JoinGroupResponse<'_>
impl<'a> Eq for JoinGroupResponse<'a>
Source§impl<'a> PartialEq for JoinGroupResponse<'a>
impl<'a> PartialEq for JoinGroupResponse<'a>
Source§fn eq(&self, other: &JoinGroupResponse<'a>) -> bool
fn eq(&self, other: &JoinGroupResponse<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for JoinGroupResponse<'a>
Auto Trait Implementations§
impl<'a> Freeze for JoinGroupResponse<'a>
impl<'a> RefUnwindSafe for JoinGroupResponse<'a>
impl<'a> Send for JoinGroupResponse<'a>
impl<'a> Sync for JoinGroupResponse<'a>
impl<'a> Unpin for JoinGroupResponse<'a>
impl<'a> UnsafeUnpin for JoinGroupResponse<'a>
impl<'a> UnwindSafe for JoinGroupResponse<'a>
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