[][src]Struct fluvio::dataplane::fetch::FetchPartition

pub struct FetchPartition {
    pub partition_index: i32,
    pub current_leader_epoch: i32,
    pub fetch_offset: i64,
    pub log_start_offset: i64,
    pub max_bytes: i32,
}

Fields

partition_index: i32

The partition index.

current_leader_epoch: i32

The current leader epoch of the partition.

fetch_offset: i64

The message offset.

log_start_offset: i64

The earliest available offset of the follower replica. The field is only used when the request is sent by the follower.

max_bytes: i32

The maximum bytes to fetch from this partition. See KIP-74 for cases where this limit may not be honored.

Trait Implementations

impl Debug for FetchPartition[src]

impl Decoder for FetchPartition[src]

impl Default for FetchPartition[src]

impl Encoder for FetchPartition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]