pub struct EventMismatch {
pub id: EventId,
pub jsonl_event_hash: String,
pub sqlite_event_hash: String,
}Expand description
Difference for an event id present in both stores but with different content.
Fields§
§id: EventIdEvent id whose content diverged.
jsonl_event_hash: StringEvent hash read from JSONL.
sqlite_event_hash: StringEvent hash read from SQLite.
Trait Implementations§
Source§impl Clone for EventMismatch
impl Clone for EventMismatch
Source§fn clone(&self) -> EventMismatch
fn clone(&self) -> EventMismatch
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 EventMismatch
impl Debug for EventMismatch
Source§impl PartialEq for EventMismatch
impl PartialEq for EventMismatch
Source§fn eq(&self, other: &EventMismatch) -> bool
fn eq(&self, other: &EventMismatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EventMismatch
impl StructuralPartialEq for EventMismatch
Auto Trait Implementations§
impl Freeze for EventMismatch
impl RefUnwindSafe for EventMismatch
impl Send for EventMismatch
impl Sync for EventMismatch
impl Unpin for EventMismatch
impl UnsafeUnpin for EventMismatch
impl UnwindSafe for EventMismatch
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