pub struct FetchPartitionResponseV4 {
pub partition_index: i32,
pub error_code: i16,
pub high_watermark: i64,
pub last_stable_offset: i64,
pub aborted_transactions: Vec<AbortedTransactionV4>,
pub records: Vec<MessageSetRecord>,
}Fields§
§partition_index: i32§error_code: i16§high_watermark: i64§last_stable_offset: i64§aborted_transactions: Vec<AbortedTransactionV4>§records: Vec<MessageSetRecord>Trait Implementations§
Source§impl Clone for FetchPartitionResponseV4
impl Clone for FetchPartitionResponseV4
Source§fn clone(&self) -> FetchPartitionResponseV4
fn clone(&self) -> FetchPartitionResponseV4
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FetchPartitionResponseV4
impl Debug for FetchPartitionResponseV4
impl Eq for FetchPartitionResponseV4
Source§impl PartialEq for FetchPartitionResponseV4
impl PartialEq for FetchPartitionResponseV4
impl StructuralPartialEq for FetchPartitionResponseV4
Auto Trait Implementations§
impl Freeze for FetchPartitionResponseV4
impl RefUnwindSafe for FetchPartitionResponseV4
impl Send for FetchPartitionResponseV4
impl Sync for FetchPartitionResponseV4
impl Unpin for FetchPartitionResponseV4
impl UnsafeUnpin for FetchPartitionResponseV4
impl UnwindSafe for FetchPartitionResponseV4
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