tui_treelistview/
context.rs1use ratatui::style::Style;
2
3#[derive(Clone, Copy)]
4pub struct TreeRowContext<'a> {
5 pub level: u16,
6 pub is_tail_stack: &'a [bool],
7 pub is_expanded: bool,
8 pub has_children: bool,
9 pub is_marked: bool,
10 pub draw_lines: bool,
11 pub line_style: Style,
12}