Message
pub trait Message: Send + Sync + 'static { type Result: Send + Sync + 'static; }
A message sent to an actor
Message::Result
The value that the a message handler returns to the caller