pub enum RoomFlushOutcome {
Applied {
cv: u64,
},
Conflicts(Vec<RoomRowConflict>),
}Expand description
The outcome of a CAS-guarded room flush (ClusterConsumer::commit_room_flush).
Variants§
Applied
Effects + cursor + identity committed in one transaction.
Conflicts(Vec<RoomRowConflict>)
At least one precondition missed: NOTHING applied (rolled back); each miss carries the authoritative current image for the room’s §5.4 convergence.
Auto Trait Implementations§
impl Freeze for RoomFlushOutcome
impl RefUnwindSafe for RoomFlushOutcome
impl Send for RoomFlushOutcome
impl Sync for RoomFlushOutcome
impl Unpin for RoomFlushOutcome
impl UnsafeUnpin for RoomFlushOutcome
impl UnwindSafe for RoomFlushOutcome
Blanket Implementations§
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