Struct kafka_api::sync_group_response::SyncGroupResponse
source · pub struct SyncGroupResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub protocol_type: Option<String>,
pub protocol_name: Option<String>,
pub assignment: Bytes,
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: Bytes
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 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