pub trait PageInterface<D>: PageInteractionInterface {
// Required method
fn display(&self, display_driver: &mut D);
}Expand description
Data structures that implement the Page trait are Pages and can be handled by the PageManager type
Args
display_driver- The display to render the page content- `