[go: up one dir, main page]

crossterm 0.4.1

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

mod alternate;
mod raw;
mod screen;

use super::{commands, functions, TerminalOutput};

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