Enum riker::protocol::SystemEvent[][src]

pub enum SystemEvent<Msg: Message> {
    ActorTerminated(ActorRef<Msg>),
    ActorRestarted(ActorRef<Msg>),
    ActorCreated(ActorRef<Msg>),
}

Variants

An actor was terminated

An actor was restarted

An actor was started

Trait Implementations

impl<'a, Msg: Message> From<&'a SystemEvent<Msg>> for Topic
[src]

Performs the conversion.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<Msg> Send for SystemEvent<Msg>

impl<Msg> Sync for SystemEvent<Msg>