pub struct DiffTree {
pub roots: Vec<DiffNode>,
}Expand description
The top-level result of a diff operation.
Fields§
§roots: Vec<DiffNode>The root-level diff nodes.
Implementations§
Auto Trait Implementations§
impl Freeze for DiffTree
impl RefUnwindSafe for DiffTree
impl Send for DiffTree
impl Sync for DiffTree
impl Unpin for DiffTree
impl UnsafeUnpin for DiffTree
impl UnwindSafe for DiffTree
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