pub struct TxnOffsetCommitResponse {
pub throttle_time_ms: i32,
pub topics: Vec<TxnOffsetCommitResponseTopic>,
}Expand description
TxnOffsetCommitResponse, version 0.
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.
topics: Vec<TxnOffsetCommitResponseTopic>The responses for each topic.
Implementations§
Source§impl TxnOffsetCommitResponse
impl TxnOffsetCommitResponse
pub fn new( throttle_time_ms: i32, topics: Vec<TxnOffsetCommitResponseTopic>, ) -> Self
Trait Implementations§
Source§impl ApiMessage for TxnOffsetCommitResponse
impl ApiMessage for TxnOffsetCommitResponse
Source§impl Clone for TxnOffsetCommitResponse
impl Clone for TxnOffsetCommitResponse
Source§fn clone(&self) -> TxnOffsetCommitResponse
fn clone(&self) -> TxnOffsetCommitResponse
Returns a duplicate 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 TxnOffsetCommitResponse
impl Debug for TxnOffsetCommitResponse
Source§impl Default for TxnOffsetCommitResponse
impl Default for TxnOffsetCommitResponse
Source§impl<'de> Deserialize<'de> for TxnOffsetCommitResponse
impl<'de> Deserialize<'de> for TxnOffsetCommitResponse
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 PartialEq for TxnOffsetCommitResponse
impl PartialEq for TxnOffsetCommitResponse
Source§impl Readable for TxnOffsetCommitResponse
impl Readable for TxnOffsetCommitResponse
Source§impl Serialize for TxnOffsetCommitResponse
impl Serialize for TxnOffsetCommitResponse
Source§impl Writable for TxnOffsetCommitResponse
impl Writable for TxnOffsetCommitResponse
impl Response for TxnOffsetCommitResponse
impl StructuralPartialEq for TxnOffsetCommitResponse
Auto Trait Implementations§
impl Freeze for TxnOffsetCommitResponse
impl RefUnwindSafe for TxnOffsetCommitResponse
impl Send for TxnOffsetCommitResponse
impl Sync for TxnOffsetCommitResponse
impl Unpin for TxnOffsetCommitResponse
impl UnwindSafe for TxnOffsetCommitResponse
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