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

Restarts the actor by replacing it with a new version created with its ActorFactory.

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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for SystemMessage
[src]