minicrossterm/examples/Crossterm 0.2.2 - New Version (Not finished)/terminal/mod.rs
2018-07-11 22:59:54 +02:00

11 lines
438 B
Rust

/// Examples of actions that could be performed on the alternatescreen.
/// !! Note that alternate screen only works on Unix and windows 10 systems. I am working on windows 7 support. !!
pub mod alternate_screen;
/// Examples of actions that could be performed on the terminal.
pub mod terminal;
/// Alternate screen is only supported for unix systems. Windows support will come later :).
//#[cfg(target_os = "unix")]
pub mod raw_mode;