appcui 0.4.8

A feature-rich and cross-platform TUI/CUI framework for Rust, enabling modern terminal-based applications on Windows, Linux, and macOS. Includes built-in UI components like buttons, menus, list views, tree views, checkboxes, and more. Perfect for building fast and interactive CLI tools and text-based interfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod background_task_manager;
mod background_task_conector;
mod task;
mod single_channel;
mod status_update_request;
mod background_task;

pub use self::background_task_conector::BackgroundTaskConector;
use self::single_channel::SingleChannel;
use self::status_update_request::StatusUpdateRequest;
pub use self::background_task::BackgroundTask;
pub(crate) use self::background_task_manager::BackgroundTaskManager;