PageInterface

Trait PageInterface 

Source
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
  • `

Required Methods§

Source

fn display(&self, display_driver: &mut D)

Force updating the page content on the display

Implementors§