Function ncursesw::addch[][src]

pub fn addch(ch: ChtypeChar) -> Result<(), NCurseswError>
Expand description

Add a chtype (ascii with attributes) character to the current position on the standard screen

Example

let ch = ChtypeChar::new(AsciiChar::Asterisk);

addch(ch)?;