winconsole::window
pub fn set_size(width: i32, height: i32) -> WinResult<()>
Sets the size of the console window.
let size = window::get_size().unwrap(); window::set_size(size.x + 1, size.y + 1).unwrap();
IoError