pub struct LineCounts {
pub added: usize,
pub modified: usize,
pub deleted: usize,
}Fields§
§added: usize§modified: usize§deleted: usizeTrait Implementations§
Source§impl Clone for LineCounts
impl Clone for LineCounts
Source§fn clone(&self) -> LineCounts
fn clone(&self) -> LineCounts
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 moreSource§impl Debug for LineCounts
impl Debug for LineCounts
Source§impl Default for LineCounts
impl Default for LineCounts
Source§fn default() -> LineCounts
fn default() -> LineCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LineCounts
impl RefUnwindSafe for LineCounts
impl Send for LineCounts
impl Sync for LineCounts
impl Unpin for LineCounts
impl UnsafeUnpin for LineCounts
impl UnwindSafe for LineCounts
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