pub struct ChangeSummary {
pub edits: usize,
pub bytes_before: usize,
pub bytes_after: usize,
pub removed_bytes: usize,
pub inserted_bytes: usize,
}Expand description
Exact aggregate sizes for a prepared change set.
Fields§
§edits: usize§bytes_before: usize§bytes_after: usize§removed_bytes: usize§inserted_bytes: usizeTrait Implementations§
Source§impl Clone for ChangeSummary
impl Clone for ChangeSummary
Source§fn clone(&self) -> ChangeSummary
fn clone(&self) -> ChangeSummary
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 ChangeSummary
Source§impl Debug for ChangeSummary
impl Debug for ChangeSummary
impl Eq for ChangeSummary
Source§impl PartialEq for ChangeSummary
impl PartialEq for ChangeSummary
impl StructuralPartialEq for ChangeSummary
Auto Trait Implementations§
impl Freeze for ChangeSummary
impl RefUnwindSafe for ChangeSummary
impl Send for ChangeSummary
impl Sync for ChangeSummary
impl Unpin for ChangeSummary
impl UnsafeUnpin for ChangeSummary
impl UnwindSafe for ChangeSummary
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