pub trait LineLength {
    // Required method
    fn line_length(&self) -> Column;
}
Expand description

Get the length of occupied cells in a line

Required Methods§

source

fn line_length(&self) -> Column

Calculate the occupied line length

Implementors§