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

Regular message.

Control messages.