pub trait PartitionOffset {
    // Required methods
    fn last_stable_offset(&self) -> i64;
    fn start_offset(&self) -> i64;
}
Expand description

Offset information about Partition

Required Methods§

source

fn last_stable_offset(&self) -> i64

last offset that was committed

source

fn start_offset(&self) -> i64

Implementors§