semtext 0.1.0

Terminal UI Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// layout/mod.rs
//
// Copyright (c) 2020-2021  Douglas P Lau
//
//! User interface layout

mod bbox;
mod bounds;
mod cells;
mod gridarea;

pub use bbox::BBox;
pub use bbox::{Dim, Pos};
pub use bounds::LengthBound;
pub use cells::Cells;
pub use gridarea::{GridArea, GridItem};