summaryrefslogtreecommitdiffstats
path: root/src/tuice/layout/layout_node.rs
blob: aebaaa4971743d99e640374e342a84e909ae569c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use tui::layout::Rect;

/// A node for the layout tree.
pub enum LayoutNode {
    Leaf {
        area: Rect,
    },
    Branch {
        area: Rect,
        children: Vec<LayoutNode>,
    },
}