pub struct ByKind {
pub sections_added: u32,
pub sections_removed: u32,
pub sections_modified: u32,
pub sections_moved: u32,
pub paragraphs_modified: u32,
pub tables_modified: u32,
}Expand description
Counts grouped by change kind.
Fields§
§sections_added: u32Sections present only in to.
sections_removed: u32Sections present only in from.
sections_modified: u32Sections present on both sides with content edits.
sections_moved: u32Sections present on both sides at different positions.
paragraphs_modified: u32Number of paragraph-shaped block edits.
tables_modified: u32Number of tables with at least one modified cell.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ByKind
impl RefUnwindSafe for ByKind
impl Send for ByKind
impl Sync for ByKind
impl Unpin for ByKind
impl UnsafeUnpin for ByKind
impl UnwindSafe for ByKind
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