pub struct JournalCounts {
pub deleted: usize,
pub modified: usize,
}Expand description
Structured counts of what the rollback-journal recovery found — the NIST SFT-03 “number of deleted/modified records” report (design §5/§6.11).
Fields§
§deleted: usizeRows deleted by the last transaction (prior \ current by rowid).
modified: usizeRows modified by the last transaction (present in both, values differ).
Trait Implementations§
Source§impl Clone for JournalCounts
impl Clone for JournalCounts
Source§fn clone(&self) -> JournalCounts
fn clone(&self) -> JournalCounts
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 JournalCounts
Source§impl Debug for JournalCounts
impl Debug for JournalCounts
Source§impl Default for JournalCounts
impl Default for JournalCounts
Source§fn default() -> JournalCounts
fn default() -> JournalCounts
Returns the “default value” for a type. Read more
impl Eq for JournalCounts
Source§impl PartialEq for JournalCounts
impl PartialEq for JournalCounts
impl StructuralPartialEq for JournalCounts
Auto Trait Implementations§
impl Freeze for JournalCounts
impl RefUnwindSafe for JournalCounts
impl Send for JournalCounts
impl Sync for JournalCounts
impl Unpin for JournalCounts
impl UnsafeUnpin for JournalCounts
impl UnwindSafe for JournalCounts
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