pub struct SyncGroupResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub protocol_type: Option<String>,
pub protocol_name: Option<String>,
pub assignment: Vec<u8>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§throttle_time_ms: i32
The 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: i16
The error code, or 0 if there was no error.
protocol_type: Option<String>
The group protocol type.
protocol_name: Option<String>
The group protocol name
assignment: Vec<u8>
The member assignment.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for SyncGroupResponse
impl Clone for SyncGroupResponse
Source§fn clone(&self) -> SyncGroupResponse
fn clone(&self) -> SyncGroupResponse
Returns a copy 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 SyncGroupResponse
impl Debug for SyncGroupResponse
Source§impl Default for SyncGroupResponse
impl Default for SyncGroupResponse
Source§fn default() -> SyncGroupResponse
fn default() -> SyncGroupResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SyncGroupResponse
impl RefUnwindSafe for SyncGroupResponse
impl Send for SyncGroupResponse
impl Sync for SyncGroupResponse
impl Unpin for SyncGroupResponse
impl UnwindSafe for SyncGroupResponse
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