pub struct DiffModel {
pub files: BTreeMap<String, FileDiff>,
}Expand description
A whole diff: the set of changed files between two revisions.
Fields§
§files: BTreeMap<String, FileDiff>Changed files, keyed by new-side path.
Implementations§
Source§impl DiffModel
impl DiffModel
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffModel
impl RefUnwindSafe for DiffModel
impl Send for DiffModel
impl Sync for DiffModel
impl Unpin for DiffModel
impl UnsafeUnpin for DiffModel
impl UnwindSafe for DiffModel
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