Struct fluvio_spu_schema::server::fetch_offset::FetchOffsetPartitionResponse[][src]

pub struct FetchOffsetPartitionResponse {
    pub error_code: ErrorCode,
    pub partition_index: i32,
    pub start_offset: i64,
    pub last_stable_offset: i64,
}

Fields

error_code: ErrorCode

The partition error code, None for no error

partition_index: i32

The partition index.

start_offset: i64

First readable offset.

last_stable_offset: i64

Last readable offset

Trait Implementations

impl Debug for FetchOffsetPartitionResponse[src]

impl Decoder for FetchOffsetPartitionResponse[src]

impl Default for FetchOffsetPartitionResponse[src]

impl Display for FetchOffsetPartitionResponse[src]

impl Encoder for FetchOffsetPartitionResponse[src]

impl PartitionOffset for FetchOffsetPartitionResponse[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.