panes 0.19.0

Renderer-agnostic layout engine with declarative ergonomics
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Where to place the new panel relative to the focused panel.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum Placement {
    /// New panel goes before focused (left or above).
    Before,
    /// New panel goes after focused (right or below).
    #[default]
    After,
    /// Append to the end of the sequence.
    End,
}