Enum robots::actors::actor_cell::SystemMessage
[−]
[src]
pub enum SystemMessage { Restart, Start, }
Special messages issued by the actor system. Note that these are treated with the highest priority and will thus be handled before any InnerMessage is handled.
Variants
Restart
Restarts the actor by replacing it with a new version created with its ActorFactory.
Start
Tells the actor to initialize itself. Note that the initialization is not done by the father for fairness reasons.
Trait Implementations
impl Clone for SystemMessage
[src]
fn clone(&self) -> SystemMessage
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more