pub struct DiffStats {
pub old_tree_nodes: usize,
pub new_tree_nodes: usize,
pub unchanged_subtrees: usize,
}Expand description
Statistics from the diff operation
Fields§
§old_tree_nodes: usizeNumber of nodes visited in old tree
new_tree_nodes: usizeNumber of nodes visited in new tree
unchanged_subtrees: usizeNumber of subtrees skipped due to hash match
Trait 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 UnwindSafe for DiffStats
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