Handler
pub trait Handler<T: Message>: Actor { // Required method fn handle_message(&self, message: T) -> T::Result; }
Implement this trait for all actors that wish to recieve the message T.