ad74f6b524
* Introduced: crossterm workspace, feature flags.
19 lines
636 B
Rust
19 lines
636 B
Rust
extern crate crossterm;
|
|
|
|
use crossterm::{Crossterm, Screen, Color};
|
|
|
|
/// use the `Crossterm` to get an instance to the cursor module | demonstration.
|
|
pub fn crossterm() {
|
|
// Create the crossterm type to access different modules.
|
|
let crossterm = Crossterm::new();
|
|
|
|
// pass a reference to the current screen.
|
|
let cursor = crossterm.cursor();
|
|
let color = crossterm.color();
|
|
let terminal = crossterm.terminal();
|
|
let terminal = crossterm.input();
|
|
let style = crossterm.style("Black font on green background").with(Color::Black).on(Color::Green);
|
|
|
|
// TODO: perform some actions with the instances above.
|
|
}
|