pub struct ReconcileReport {
pub in_both: usize,
pub source_only: usize,
pub store_only: usize,
pub un_keyable: usize,
}Expand description
A reconcile bucket count: how many source rulings are IN BOTH the source and the store, how many
are SOURCE-ONLY (the capture gap — a ruling the source has that the ledger never captured), how
many are STORE-ONLY (in the ledger, absent from this source), and how many store ticks could not
be keyed at all (no round token in their hashed observe). Keys come from the HASHED observe /
round_id, never from events.jsonl, so they are durable.
Fields§
§in_both: usize§source_only: usize§store_only: usize§un_keyable: usizeTrait Implementations§
Source§impl Debug for ReconcileReport
impl Debug for ReconcileReport
Source§impl Default for ReconcileReport
impl Default for ReconcileReport
Source§fn default() -> ReconcileReport
fn default() -> ReconcileReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReconcileReport
impl PartialEq for ReconcileReport
Source§fn eq(&self, other: &ReconcileReport) -> bool
fn eq(&self, other: &ReconcileReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReconcileReport
Auto Trait Implementations§
impl Freeze for ReconcileReport
impl RefUnwindSafe for ReconcileReport
impl Send for ReconcileReport
impl Sync for ReconcileReport
impl Unpin for ReconcileReport
impl UnsafeUnpin for ReconcileReport
impl UnwindSafe for ReconcileReport
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