pub trait Handler: Send + Sync { // Required method fn emit(&self, message: &Message); }
Handels an emitted message.
Actually do something with the message.