pub struct TreeDiff {
pub added: Vec<Hash>,
pub stats: DiffStats,
}Expand description
Result of a tree diff operation
Fields§
§added: Vec<Hash>Hashes present in new tree but not in old tree (need upload)
stats: DiffStatsStatistics about the diff operation
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TreeDiff
impl RefUnwindSafe for TreeDiff
impl Send for TreeDiff
impl Sync for TreeDiff
impl Unpin for TreeDiff
impl UnwindSafe for TreeDiff
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