pub struct InitProducerIdResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub producer_id: i64,
pub producer_epoch: i16,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§throttle_time_ms: i32The 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: i16The error code, or 0 if there was no error.
producer_id: i64The current producer id.
producer_epoch: i16The current epoch associated with the producer id.
unknown_tagged_fields: Vec<RawTaggedField>Unknown tagged fields.
Trait Implementations§
source§impl Debug for InitProducerIdResponse
impl Debug for InitProducerIdResponse
source§impl Default for InitProducerIdResponse
impl Default for InitProducerIdResponse
source§fn default() -> InitProducerIdResponse
fn default() -> InitProducerIdResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for InitProducerIdResponse
impl Send for InitProducerIdResponse
impl Sync for InitProducerIdResponse
impl Unpin for InitProducerIdResponse
impl UnwindSafe for InitProducerIdResponse
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