pub struct FetchResponsePartition {
    pub partition_index: Int32,
    pub error_code: Option<Error>,
    pub high_watermark: Int64,
    pub last_stable_offset: Option<Int64>,
    pub aborted_transactions: Vec<FetchResponseAbortedTransaction>,
    pub records: Records,
}Fields§
§partition_index: Int32The partition index.
error_code: Option<Error>The error code, or 0 if there was no fetch error.
high_watermark: Int64The current high water mark.
last_stable_offset: Option<Int64>The last stable offset (or LSO) of the partition.
This is the last offset such that the state of all transactional records prior to this offset have been decided
(ABORTED or COMMITTED).
Added in version 4.
aborted_transactions: Vec<FetchResponseAbortedTransaction>The aborted transactions.
Added in version 4.
records: RecordsThe record data.
Trait Implementations§
Source§impl Debug for FetchResponsePartition
 
impl Debug for FetchResponsePartition
Source§impl<R> ReadVersionedType<R> for FetchResponsePartitionwhere
    R: Read,
 
impl<R> ReadVersionedType<R> for FetchResponsePartitionwhere
    R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for FetchResponsePartition
impl RefUnwindSafe for FetchResponsePartition
impl Send for FetchResponsePartition
impl Sync for FetchResponsePartition
impl Unpin for FetchResponsePartition
impl UnwindSafe for FetchResponsePartition
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