crossterm 0.5.0

An crossplatform terminal library for manipulating terminals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This module provides some modules to work with the terminal screen.
//! Like allowing you to switch between raw and alternate screen.

mod alternate;
mod raw;
mod screen;

use super::{commands, TerminalOutput};

pub use self::alternate::AlternateScreen;
pub use self::raw::RawScreen;
pub use self::screen::Screen;