pub struct MutationCausalScope {
pub model: String,
pub storage: String,
}Expand description
Causal obligation scope derived from mutation targets.
Fields§
§model: StringLogical model name.
storage: StringOpaque storage identity.
Trait Implementations§
Source§impl Clone for MutationCausalScope
impl Clone for MutationCausalScope
Source§fn clone(&self) -> MutationCausalScope
fn clone(&self) -> MutationCausalScope
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 MutationCausalScope
impl Debug for MutationCausalScope
impl Eq for MutationCausalScope
Source§impl Hash for MutationCausalScope
impl Hash for MutationCausalScope
Source§impl Ord for MutationCausalScope
impl Ord for MutationCausalScope
Source§fn cmp(&self, other: &MutationCausalScope) -> Ordering
fn cmp(&self, other: &MutationCausalScope) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for MutationCausalScope
impl PartialEq for MutationCausalScope
Source§impl PartialOrd for MutationCausalScope
impl PartialOrd for MutationCausalScope
impl StructuralPartialEq for MutationCausalScope
Auto Trait Implementations§
impl Freeze for MutationCausalScope
impl RefUnwindSafe for MutationCausalScope
impl Send for MutationCausalScope
impl Sync for MutationCausalScope
impl Unpin for MutationCausalScope
impl UnsafeUnpin for MutationCausalScope
impl UnwindSafe for MutationCausalScope
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.