Skip to main content

ratatui_core/
buffer.rs

1#![warn(missing_docs)]
2//! A module for the [`Buffer`] and [`Cell`] types.
3
4mod assert;
5mod buffer;
6mod cell;
7mod cell_width;
8mod diff;
9
10pub use buffer::Buffer;
11pub use cell::{Cell, CellDiffOption};
12pub use cell_width::CellWidth;
13pub use diff::BufferDiff;