[][src]Struct riker_es::Entity

pub struct Entity<E: ES> { /* fields omitted */ }

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

Trait Implementations

impl<E: ES> Actor for Entity<E>[src]

type Msg = CQRS<E::Cmd>

impl<E, Args> ActorFactoryArgs<Args> for Entity<E> where
    Args: ActorArgs,
    E: ES<Args = Args>, 
[src]

impl<E: ES> Receive<Query> for Entity<E>[src]

type Msg = CQRS<E::Cmd>

Auto Trait Implementations

impl<E> !RefUnwindSafe for Entity<E>

impl<E> Send for Entity<E> where
    <E as ES>::Args: Send,
    <<E as ES>::Model as Model>::Change: Send,
    <E as ES>::Model: Clone + Debug + Model + Send

impl<E> Sync for Entity<E> where
    <E as ES>::Args: Sync,
    <<E as ES>::Model as Model>::Change: Send,
    <E as ES>::Model: Clone + Debug + Model + Send

impl<E> Unpin for Entity<E> where
    <E as ES>::Args: Unpin

impl<E> !UnwindSafe for Entity<E>

Blanket Implementations

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>,