1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use crate;
/// Represents a display specification
///
/// Const generic parameters:
/// - *WIDTH*: the horizontal resolution of the display
/// - *HEIGHT*: the vertical resolution of the display
/// - *PAGES*: the number of pages used by the display; usually *HEIGHT* / 8 (rounded up)
///
/// To create a custom display specification, create an empty struct that
/// implements this trait.