pub trait ProcessEvent { type Result; // Required method fn input(&mut self, event: Event) -> Self::Result; }