pub trait GBGraphicsDrawer { type Err: Error; // Required method fn output(&mut self, frame: &Frame) -> Result<(), Self::Err>; }