pub struct DiffSummary {
pub rows_added: usize,
pub rows_removed: usize,
pub rows_modified: usize,
pub columns_added: usize,
pub columns_removed: usize,
}Expand description
Summary of changes between snapshots
Fields§
§rows_added: usizeNumber of rows added
rows_removed: usizeNumber of rows removed
rows_modified: usizeNumber of rows modified
columns_added: usizeNumber of columns added
columns_removed: usizeNumber of columns removed
Trait Implementations§
Source§impl Clone for DiffSummary
impl Clone for DiffSummary
Source§fn clone(&self) -> DiffSummary
fn clone(&self) -> DiffSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 DiffSummary
impl Debug for DiffSummary
Source§impl<'de> Deserialize<'de> for DiffSummary
impl<'de> Deserialize<'de> for DiffSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiffSummary
impl RefUnwindSafe for DiffSummary
impl Send for DiffSummary
impl Sync for DiffSummary
impl Unpin for DiffSummary
impl UnsafeUnpin 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