pub struct CommitStats {
pub files_changed: usize,
pub insertions: usize,
pub deletions: usize,
}Expand description
Summary stats for a commit
Fields§
§files_changed: usize§insertions: usize§deletions: usizeTrait Implementations§
Source§impl Clone for CommitStats
impl Clone for CommitStats
Source§fn clone(&self) -> CommitStats
fn clone(&self) -> CommitStats
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 CommitStats
impl Debug for CommitStats
Source§impl PartialEq for CommitStats
impl PartialEq for CommitStats
impl Copy for CommitStats
impl Eq for CommitStats
impl StructuralPartialEq for CommitStats
Auto Trait Implementations§
impl Freeze for CommitStats
impl RefUnwindSafe for CommitStats
impl Send for CommitStats
impl Sync for CommitStats
impl Unpin for CommitStats
impl UnwindSafe for CommitStats
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