pub trait RenderTty: Write {
    fn get_size_in_cells(&mut self) -> Result<(usize, usize)>;
}

Required Methods

Returns the (cols, rows) for the terminal

Implementors