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