tui-realm-stdlib 4.1.0

Standard components library for tui-realm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ## Utils
//!
//! `Utils` provides structures useful to implement gui with tui-rs

#![allow(unused)] // clippy / rust do not see shared files in examples as being used

mod data_gen;
mod loader;
mod model;

pub use data_gen::DataGen;
pub use loader::Loader;
pub use model::Model;