[][src]Struct riker_es::Store

pub struct Store<T: Model> { /* fields omitted */ }

An actor that handles the persistance of events of entities using "commits" to track who made a change and why.

Trait Implementations

impl<T: Model> Actor for Store<T>[src]

type Msg = StoreMsg<T>

impl<T: Model> ActorFactoryArgs<ActorRef<ChannelMsg<Event<T>>>> for Store<T>[src]

impl<T: Debug + Model> Debug for Store<T>[src]

impl<T: Model> Default for Store<T>[src]

impl<T: Model> Receive<(EntityId, DateTime<Utc>)> for Store<T>[src]

type Msg = StoreMsg<T>

impl<T: Model> Receive<Commit<T>> for Store<T>[src]

type Msg = StoreMsg<T>

impl<T: Model> Receive<EntityId> for Store<T>[src]

type Msg = StoreMsg<T>

impl<T: Model> Receive<RangeTo<DateTime<Utc>>> for Store<T>[src]

type Msg = StoreMsg<T>

Auto Trait Implementations

impl<T> !RefUnwindSafe for Store<T>

impl<T> Send for Store<T> where
    <T as Model>::Change: Clone + Debug + Send

impl<T> Sync for Store<T> where
    T: Sync,
    <T as Model>::Change: Clone + Debug + Send + Sync

impl<T> Unpin for Store<T> where
    T: Unpin,
    <T as Model>::Change: Unpin

impl<T> !UnwindSafe for Store<T>

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