Function ncursesw::mvaddch[][src]

pub fn mvaddch(origin: Origin, ch: ChtypeChar) -> Result<(), NCurseswError>
Expand description

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

Example

let origin = Origin { y: 10, x: 15 };
let ch = ChtypeChar::new(AsciiChar::Asterisk);

mvaddch(origin, ch)?;