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
pub trait Display {
// Required methods
fn get_image(&self) -> &RgbImage;
fn get_image_mut(&mut self) -> &mut RgbImage;
fn update(&mut self);
}Repersents a phyical screen that can display static images