pub struct DiffStats {
pub added: usize,
pub removed: usize,
pub modified: usize,
pub api_breaking: usize,
pub test_changes: usize,
pub affected_edges: usize,
pub files_touched: usize,
}Expand description
Summary statistics for a semantic diff.
Fields§
§added: usize§removed: usize§modified: usize§api_breaking: usize§test_changes: usize§affected_edges: usize§files_touched: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for DiffStats
impl RefUnwindSafe for DiffStats
impl Send for DiffStats
impl Sync for DiffStats
impl Unpin for DiffStats
impl UnsafeUnpin for DiffStats
impl UnwindSafe for DiffStats
Blanket Implementations§
impl<T> Allocation for T
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