pub struct DiffSummary {
pub lines_added: usize,
pub lines_removed: usize,
pub lines_modified: usize,
pub total_changes: usize,
}
Fields§
§lines_added: usize
§lines_removed: usize
§lines_modified: usize
§total_changes: usize
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 moreAuto 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