Display

Trait Display 

Source
pub trait Display {
    // Required methods
    fn get_image(&self) -> &RgbImage;
    fn get_image_mut(&mut self) -> &mut RgbImage;
    fn update(&mut self);
}
Expand description

Repersents a phyical screen that can display static images

Required Methods§

Source

fn get_image(&self) -> &RgbImage

Source

fn get_image_mut(&mut self) -> &mut RgbImage

Source

fn update(&mut self)

Implementors§