pub struct ReadModelLoadBuilder<'workspace, 'store, S, M>where
S: ReadModelWritePlanStore + RelationalReadModelQueryStore,{ /* private fields */ }Expand description
Builder for one explicit primary-key read-model load over the async store traits.
Implementations§
Source§impl<'workspace, 'store, S, M> ReadModelLoadBuilder<'workspace, 'store, S, M>
impl<'workspace, 'store, S, M> ReadModelLoadBuilder<'workspace, 'store, S, M>
Auto Trait Implementations§
impl<'workspace, 'store, S, M> !UnwindSafe for ReadModelLoadBuilder<'workspace, 'store, S, M>
impl<'workspace, 'store, S, M> Freeze for ReadModelLoadBuilder<'workspace, 'store, S, M>
impl<'workspace, 'store, S, M> RefUnwindSafe for ReadModelLoadBuilder<'workspace, 'store, S, M>where
M: RefUnwindSafe,
S: RefUnwindSafe,
impl<'workspace, 'store, S, M> Send for ReadModelLoadBuilder<'workspace, 'store, S, M>where
M: Send,
impl<'workspace, 'store, S, M> Sync for ReadModelLoadBuilder<'workspace, 'store, S, M>where
M: Sync,
impl<'workspace, 'store, S, M> Unpin for ReadModelLoadBuilder<'workspace, 'store, S, M>where
M: Unpin,
impl<'workspace, 'store, S, M> UnsafeUnpin for ReadModelLoadBuilder<'workspace, 'store, S, M>
Blanket Implementations§
Source§impl<T> AggregateBuilder for T
impl<T> AggregateBuilder for T
fn aggregate<A: Aggregate>(self) -> AggregateRepository<Self, A>
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Queueable for T
impl<T> Queueable for T
Source§fn queued(self) -> QueuedRepository<Self, InMemoryAsyncLockManager>
fn queued(self) -> QueuedRepository<Self, InMemoryAsyncLockManager>
Wrap with the default async lock manager. Pair with
.aggregate::<T>() for per-aggregate serialization over the async
repository surface.Source§fn queued_with<L: AsyncLockManager>(
self,
lock_manager: L,
) -> QueuedRepository<Self, L>
fn queued_with<L: AsyncLockManager>( self, lock_manager: L, ) -> QueuedRepository<Self, L>
Wrap with a custom async lock manager.