pub struct ProduceResponse {
pub responses: Vec<ProduceResponseResponse>,
pub throttle_time_ms: Option<Int32>,
}Fields§
§responses: Vec<ProduceResponseResponse>Each produce response
throttle_time_ms: Option<Int32>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.
Added in version 1.
Trait Implementations§
Source§impl Debug for ProduceResponse
impl Debug for ProduceResponse
Source§impl<R> ReadVersionedType<R> for ProduceResponsewhere
R: Read,
impl<R> ReadVersionedType<R> for ProduceResponsewhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for ProduceResponse
impl RefUnwindSafe for ProduceResponse
impl Send for ProduceResponse
impl Sync for ProduceResponse
impl Unpin for ProduceResponse
impl UnwindSafe for ProduceResponse
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