Enum riker::protocol::CQMsg[][src]

pub enum CQMsg<Msg: Message> {
    Cmd(String, Msg),
}

Variants

CQRS command message

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

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

Performs the conversion.

Auto Trait Implementations

impl<Msg> Send for CQMsg<Msg>

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