[][src]Struct riker_es::Entity

pub struct Entity<C: Command> { /* fields omitted */ }

Entity is an actor that dispatches commands and manages aggregates that are being queried

Trait Implementations

impl<C: Command> Actor for Entity<C>[src]

type Msg = CQRS<C>

impl<C: Command> Default for Entity<C>[src]

impl<C: Command> Receive<Query> for Entity<C>[src]

type Msg = CQRS<C>

Auto Trait Implementations

impl<C> !RefUnwindSafe for Entity<C>

impl<C> Send for Entity<C> where
    <C as Command>::Agg: Aggregate + Clone + Debug + Send,
    <<C as Command>::Agg as Aggregate>::Update: Send

impl<C> Sync for Entity<C> where
    <C as Command>::Agg: Aggregate + Clone + Debug + Send,
    <<C as Command>::Agg as Aggregate>::Update: Send

impl<C> Unpin for Entity<C>

impl<C> !UnwindSafe for Entity<C>

Blanket Implementations

impl<A> ActorFactory for A where
    A: Actor + Default
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,