pub struct SectionRecord {
pub heading: String,
pub path: String,
pub change: ChangeKind,
pub summary: String,
pub cursor: String,
pub diff: Vec<NodeDelta>,
}Expand description
One section’s record in the output.
Fields§
§heading: StringHeading text (empty for the document preamble).
path: StringHeading-anchor path (e.g. /h2#background).
change: ChangeKindCoarse change classification.
summary: StringOne-line human-readable summary.
cursor: StringOpaque drill-in cursor for confluence_compare_section.
diff: Vec<NodeDelta>Per-block deltas (only emitted in Full detail).
Trait Implementations§
Source§impl Clone for SectionRecord
impl Clone for SectionRecord
Source§fn clone(&self) -> SectionRecord
fn clone(&self) -> SectionRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SectionRecord
impl Debug for SectionRecord
Auto Trait Implementations§
impl Freeze for SectionRecord
impl RefUnwindSafe for SectionRecord
impl Send for SectionRecord
impl Sync for SectionRecord
impl Unpin for SectionRecord
impl UnsafeUnpin for SectionRecord
impl UnwindSafe for SectionRecord
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