pub struct RunTotals {
pub run_rows: u64,
pub rows_cum: u64,
}Expand description
The run accounting pair (run_rows, rows_cum) — today’s stamped columns, moved
into the header and precomputed in the capture path (211 §4.1).
Fields§
§run_rows: u64Total change-row count of this entry’s run.
rows_cum: u64Cumulative change-row count at this entry’s head (the master’s running total).
Trait Implementations§
impl Copy for RunTotals
impl Eq for RunTotals
impl StructuralPartialEq for RunTotals
Auto Trait Implementations§
impl Freeze for RunTotals
impl RefUnwindSafe for RunTotals
impl Send for RunTotals
impl Sync for RunTotals
impl Unpin for RunTotals
impl UnsafeUnpin for RunTotals
impl UnwindSafe for RunTotals
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