pub trait Window {
// Required methods
fn move_print(&mut self, point: ScreenPoint, text: &str);
fn print(&mut self, text: &str);
fn refresh(&mut self);
fn get_char(&mut self) -> char;
}Required Methods§
Sourcefn move_print(&mut self, point: ScreenPoint, text: &str)
fn move_print(&mut self, point: ScreenPoint, text: &str)
Move the cursor to specific coordinates and print a string