pub trait TerminalDisplaySize: DisplaySize {
    const CHAR_NUM: u8;
}
Expand description

Extends the DisplaySize trait to include number of characters that can fit on the display.

Required Associated Constants

The number of characters that can fit on the display at once (w * h / (8 * 8))

Implementors