ratatui 0.26.3

A library that's all about cooking up terminal user interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
#![warn(missing_docs)]
//! A module for the [`Buffer`] and [`Cell`] types.

mod assert;
#[allow(clippy::module_inception)]
mod buffer;
mod cell;

pub use buffer::Buffer;
pub use cell::Cell;