pub struct Diff {
pub sections: Vec<SectionDiff>,
pub stats: DiffStats,
}Expand description
Diff between two ADF documents.
Fields§
§sections: Vec<SectionDiff>Sections present in either document, in to order with Removed
sections appended at the end.
stats: DiffStatsAggregate change statistics.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Diff
impl RefUnwindSafe for Diff
impl Send for Diff
impl Sync for Diff
impl Unpin for Diff
impl UnsafeUnpin for Diff
impl UnwindSafe for Diff
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