pub struct KfSyncGroupResponse {
pub throttle_time_ms: i32,
pub error_code: ErrorCode,
pub assignment: GroupAssignment,
}
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: ErrorCode
The error code, or 0 if there was no error.
assignment: GroupAssignment
The member assignment.
Trait Implementations§
Source§impl Debug for KfSyncGroupResponse
impl Debug for KfSyncGroupResponse
Source§impl Decoder for KfSyncGroupResponse
impl Decoder for KfSyncGroupResponse
Source§impl Default for KfSyncGroupResponse
impl Default for KfSyncGroupResponse
Source§impl<'de> Deserialize<'de> for KfSyncGroupResponse
impl<'de> Deserialize<'de> for KfSyncGroupResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encoder for KfSyncGroupResponse
impl Encoder for KfSyncGroupResponse
Auto Trait Implementations§
impl Freeze for KfSyncGroupResponse
impl RefUnwindSafe for KfSyncGroupResponse
impl Send for KfSyncGroupResponse
impl Sync for KfSyncGroupResponse
impl Unpin for KfSyncGroupResponse
impl UnwindSafe for KfSyncGroupResponse
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