//! Table of Contents entry.
/// A single entry in the Table of Contents.
#[derive(Debug, Clone, Default)]pubstructTocEntry{/// The text content of the heading.
pubtext: String,
/// The heading level (1-6).
publevel:u8,
/// The line number in the source document.
publine_number:usize,
/// A unique identifier for the section.
pubsection_id: String,
}