[−][src]Trait xtra::Message
A message that can be sent to an Actor for processing. They are processed
one at a time. Only actors implementing the corresponding Handler<M>
trait can be sent a given message.
Associated Types
type Result: Send
The return type of the message. It will be returned when the Address::send
or Address::send_async methods are called.