1 2 3 4 5 6 7
use super::Event; pub trait Subscriber { type Input; fn on_event(&mut self, message: &Event<Self::Input>); }