Enum riker::protocol::ESMsg[][src]

pub enum ESMsg<Msg: Message> {
    Persist(Evt<Msg>, StringString),
    Load(StringString),
    LoadResult(Vec<Msg>),
}

Variants

Persist given Evt to the event store. (Event to store, Unique ID, Keyspace)

Load all events from the event store. (Unique ID, Keyspace)

Received when loading events

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Msg: Message> Into<ActorMsg<Msg>> for ESMsg<Msg>
[src]

Performs the conversion.

Auto Trait Implementations

impl<Msg> Send for ESMsg<Msg>

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