pub enum StartPosition {
FromBeginning,
LiveOnly,
FromSeq(u64),
}Expand description
Where the fold task begins consuming the RedEX tail.
Variants§
FromBeginning
Replay from the beginning of the file (seq 0). Default.
LiveOnly
Start live-only; skip backfill. Use when State is rehydrated
from an external snapshot and the adapter should only see new
post-open appends.
FromSeq(u64)
Start at a caller-supplied checkpoint. The fold task sees
events with RedexEntry::seq >= n.
Trait Implementations§
Source§impl Clone for StartPosition
impl Clone for StartPosition
Source§fn clone(&self) -> StartPosition
fn clone(&self) -> StartPosition
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 moreSource§impl Debug for StartPosition
impl Debug for StartPosition
Source§impl PartialEq for StartPosition
impl PartialEq for StartPosition
Source§fn eq(&self, other: &StartPosition) -> bool
fn eq(&self, other: &StartPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StartPosition
impl Eq for StartPosition
impl StructuralPartialEq for StartPosition
Auto Trait Implementations§
impl Freeze for StartPosition
impl RefUnwindSafe for StartPosition
impl Send for StartPosition
impl Sync for StartPosition
impl Unpin for StartPosition
impl UnsafeUnpin for StartPosition
impl UnwindSafe for StartPosition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.