ratatui-toolkit 0.2.6

DEPRECATED: this crate was renamed to `ratkit`. Please migrate to `ratkit`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Table of Contents entry.

/// A single entry in the Table of Contents.
#[derive(Debug, Clone, Default)]
pub struct TocEntry {
    /// The text content of the heading.
    pub text: String,
    /// The heading level (1-6).
    pub level: u8,
    /// The line number in the source document.
    pub line_number: usize,
    /// A unique identifier for the section.
    pub section_id: String,
}