Trait Message
Other items intiny_tokio_actor
pub trait Message: Clone + Send + Sync + 'static { type Response: Send + Sync + 'static; }
Defines what an actor will receive as its message, and with what it should respond.
type Response: Send + Sync + 'static
response an actor should give when it receives this message. If no response is required, use ().
()