#[non_exhaustive]pub enum StartOffset {
Committed,
Earliest,
Latest,
}Expand description
Where a consumer group starts reading when it has no valid committed offset.
Kafka resumes from the group’s committed position when a valid one exists; this choice (it
maps to librdkafka’s auto.offset.reset) applies when there is none - the group has never
committed the partition, or the committed offset was deleted by retention / is out of
range. The second case is why it matters for long-idle groups: with the librdkafka default
(latest) an expired group skips to the end instead of reprocessing.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Committed
Leave the choice to librdkafka (its default resets to the latest offset).
Earliest
Start from the earliest retained offset.
Latest
Start from the latest offset (only messages published after the group formed).
Trait Implementations§
Source§impl Clone for StartOffset
impl Clone for StartOffset
Source§fn clone(&self) -> StartOffset
fn clone(&self) -> StartOffset
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 moreimpl Copy for StartOffset
Source§impl Debug for StartOffset
impl Debug for StartOffset
Source§impl Default for StartOffset
impl Default for StartOffset
Source§fn default() -> StartOffset
fn default() -> StartOffset
Returns the “default value” for a type. Read more
impl Eq for StartOffset
Source§impl PartialEq for StartOffset
impl PartialEq for StartOffset
impl StructuralPartialEq for StartOffset
Auto Trait Implementations§
impl Freeze for StartOffset
impl RefUnwindSafe for StartOffset
impl Send for StartOffset
impl Sync for StartOffset
impl Unpin for StartOffset
impl UnsafeUnpin for StartOffset
impl UnwindSafe for StartOffset
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