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§

source

const CHAR_NUM: u8

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

Object Safety§

This trait is not object safe.

Implementors§