pub struct DiffSummary {
pub tables_added: usize,
pub tables_removed: usize,
pub tables_modified: usize,
pub rows_added: u64,
pub rows_removed: u64,
pub rows_modified: u64,
pub truncated: bool,
}Expand description
Summary of differences
Fields§
§tables_added: usizeNumber of tables added
tables_removed: usizeNumber of tables removed
tables_modified: usizeNumber of tables modified (schema or data)
rows_added: u64Total rows added across all tables
rows_removed: u64Total rows removed across all tables
rows_modified: u64Total rows modified across all tables
truncated: boolWhether any data was truncated due to memory limits
Trait Implementations§
Source§impl Debug for DiffSummary
impl Debug for DiffSummary
Auto Trait Implementations§
impl Freeze for DiffSummary
impl RefUnwindSafe for DiffSummary
impl Send for DiffSummary
impl Sync for DiffSummary
impl Unpin for DiffSummary
impl UnwindSafe for DiffSummary
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