pub struct PatchTableRowMutation {
pub schema: &'static TableSchema,
pub key: RowKey,
pub patch: RowPatch,
pub expected_version: ExpectedVersion,
pub mode: PatchMode,
}Expand description
Sparse relational row patch mutation.
Fields§
§schema: &'static TableSchema§key: RowKey§patch: RowPatch§expected_version: ExpectedVersion§mode: PatchModeTrait Implementations§
Source§impl Clone for PatchTableRowMutation
impl Clone for PatchTableRowMutation
Source§fn clone(&self) -> PatchTableRowMutation
fn clone(&self) -> PatchTableRowMutation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PatchTableRowMutation
impl Debug for PatchTableRowMutation
Source§impl PartialEq for PatchTableRowMutation
impl PartialEq for PatchTableRowMutation
impl StructuralPartialEq for PatchTableRowMutation
Auto Trait Implementations§
impl Freeze for PatchTableRowMutation
impl RefUnwindSafe for PatchTableRowMutation
impl Send for PatchTableRowMutation
impl Sync for PatchTableRowMutation
impl Unpin for PatchTableRowMutation
impl UnsafeUnpin for PatchTableRowMutation
impl UnwindSafe for PatchTableRowMutation
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Queueable for T
impl<T> Queueable for T
Source§fn queued(self) -> QueuedRepository<Self, InMemoryLockManager>
fn queued(self) -> QueuedRepository<Self, InMemoryLockManager>
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: LockManager>(
self,
lock_manager: L,
) -> QueuedRepository<Self, L>
fn queued_with<L: LockManager>( self, lock_manager: L, ) -> QueuedRepository<Self, L>
Wrap with a custom async lock manager.