Trait term_model::ansi::TermInfo

source ·
pub trait TermInfo {
    // Required methods
    fn lines(&self) -> Line;
    fn cols(&self) -> Column;
}
Expand description

Trait that provides properties of terminal

Required Methods§

source

fn lines(&self) -> Line

source

fn cols(&self) -> Column

Implementors§

source§

impl<T> TermInfo for Term<T>