pub enum SessionSnapshotReason {
Initial,
HistoryRewritten,
SourceChanged,
}Expand description
Why a watcher emitted a complete session snapshot.
Variants§
Initial
The first event emitted after opening the follower.
HistoryRewritten
Existing normalized history changed, disappeared, or branched.
SourceChanged
Session identity or other non-message state changed.
Trait Implementations§
Source§impl Clone for SessionSnapshotReason
impl Clone for SessionSnapshotReason
Source§fn clone(&self) -> SessionSnapshotReason
fn clone(&self) -> SessionSnapshotReason
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 SessionSnapshotReason
Source§impl Debug for SessionSnapshotReason
impl Debug for SessionSnapshotReason
impl Eq for SessionSnapshotReason
Source§impl PartialEq for SessionSnapshotReason
impl PartialEq for SessionSnapshotReason
impl StructuralPartialEq for SessionSnapshotReason
Auto Trait Implementations§
impl Freeze for SessionSnapshotReason
impl RefUnwindSafe for SessionSnapshotReason
impl Send for SessionSnapshotReason
impl Sync for SessionSnapshotReason
impl Unpin for SessionSnapshotReason
impl UnsafeUnpin for SessionSnapshotReason
impl UnwindSafe for SessionSnapshotReason
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