Enum riker::protocol::SystemMsg[][src]

pub enum SystemMsg<Msg: Message> {
    ActorInit,
    ActorCmd(ActorCmd),
    Event(SystemEvent<Msg>),
    Failed(ActorRef<Msg>),
    Persisted(Msg),
    Replay(Vec<Msg>),
    Log(LogEntry),
}

Variants

Trait Implementations

impl<Msg: Clone + Message> Clone for SystemMsg<Msg>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Msg: Debug + Message> Debug for SystemMsg<Msg>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<Msg> Send for SystemMsg<Msg>

impl<Msg> Sync for SystemMsg<Msg> where
    Msg: Sync