pub trait PartitionOffset {
// Required methods
fn last_stable_offset(&self) -> i64;
fn start_offset(&self) -> i64;
}Expand description
Offset information about Partition
Required Methods§
Sourcefn last_stable_offset(&self) -> i64
fn last_stable_offset(&self) -> i64
last offset that was committed
fn start_offset(&self) -> i64
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".