Enum robots::actors::actor_cell::InnerMessage
[−]
[src]
pub enum InnerMessage { Message(Box<Any + Send>), Control(ControlMessage), }
Types of message that can be sent to an actor that will be treated normally.
Variants
Message(Box<Any + Send>)
Regular message.
Control(ControlMessage)
Control messages.