pub struct ReplayReport {
pub replayed: usize,
pub skipped_existing: usize,
pub parity: EventSetParity,
}Expand description
Replay outcome for JSONL recovery into SQLite.
Fields§
§replayed: usizeJSONL events inserted into SQLite.
skipped_existing: usizeJSONL events already present in SQLite with identical content.
parity: EventSetParityFinal parity after replay.
Trait Implementations§
Source§impl Clone for ReplayReport
impl Clone for ReplayReport
Source§fn clone(&self) -> ReplayReport
fn clone(&self) -> ReplayReport
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 ReplayReport
impl Debug for ReplayReport
Source§impl PartialEq for ReplayReport
impl PartialEq for ReplayReport
Source§fn eq(&self, other: &ReplayReport) -> bool
fn eq(&self, other: &ReplayReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReplayReport
impl StructuralPartialEq for ReplayReport
Auto Trait Implementations§
impl Freeze for ReplayReport
impl RefUnwindSafe for ReplayReport
impl Send for ReplayReport
impl Sync for ReplayReport
impl Unpin for ReplayReport
impl UnsafeUnpin for ReplayReport
impl UnwindSafe for ReplayReport
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