terminal.rs 78 B

1234
  1. pub trait TerminalInfo {
  2. fn width() -> usize;
  3. fn height() -> usize;
  4. }