[][src]Trait display::display::Display

pub trait Display {
    fn new(width: i32, height: i32, name: String) -> Self;
fn draw(&mut self, ch: char, x: i32, y: i32);
fn get_key(&mut self) -> String;
fn refresh(&mut self);
fn clear(&mut self);
fn close(&mut self); }

Required methods

fn new(width: i32, height: i32, name: String) -> Self

fn draw(&mut self, ch: char, x: i32, y: i32)

fn get_key(&mut self) -> String

fn refresh(&mut self)

fn clear(&mut self)

fn close(&mut self)

Loading content...

Implementors

impl Display for Curses[src]

Loading content...