vize_fresco 0.200.0

Fresco - Vue TUI framework (Terminal User Interface)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Terminal control module using crossterm.
//!
//! Provides cross-platform terminal manipulation including:
//! - Raw mode initialization/cleanup
//! - Double-buffered rendering
//! - Cursor management
//! - Cell-based character storage with styles

mod backend;
mod buffer;
mod cell;
mod cursor;

pub use backend::{Backend, TerminalOptions};
pub use buffer::Buffer;
pub use cell::{Cell, Color, Style};
pub use cursor::{Cursor, CursorShape};