1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! Provides simple TTY-based interface capabilities through an accessible API. Stages changes to
//! the interface until applied as a batch while minimizing writes to the output device.

extern crate core;

pub mod config;
pub mod device;
pub mod format;
pub mod layout;
pub mod line;
pub mod mode;
pub mod position;
pub mod segment;

mod interface;
mod result;
mod terminal;
mod text;

pub use crate::interface::Interface;
pub use crate::result::{Error, Result};