Struct tcurses::Console[][src]

pub struct Console;

The struct to control the ncurses terminal Basically, it makes sure that the terminal gets created and deleted correctly

Methods

impl Console
[src]

Initialize the console, this probably should only be allowed once I have no idea what would happen if you try to create more than one on the same tty

Read a single character from the input

Write a character to a specific place on-screen will not display if off-screen

Print out an entire string char by char

Trait Implementations

impl Drop for Console
[src]

De-initialize the terminal before deletion of the struct

Auto Trait Implementations

impl Send for Console

impl Sync for Console