pub enum CircleOperationProgress {
Ready,
WaitingForCloseResponses,
Finalizing,
Blocked {
block: CircleOperationBlock,
phase: CircleOperationPhase,
},
Discarding,
}Expand description
Where one Circle operation stands. Persisted on its own, apart from the operation it describes: this is what a transition rewrites, and the prepared operation is what a transition leaves alone.
Variants§
Ready
WaitingForCloseResponses
Finalizing
Blocked
Discarding
A verified nonactivation proof was accepted. The candidate’s exclusive objects are being exact-deleted and the durable row cleared in the completing transaction. The retained operation identifies the candidate graph so a restart resumes the exact same cleanup.
Trait Implementations§
Source§impl Clone for CircleOperationProgress
impl Clone for CircleOperationProgress
Source§fn clone(&self) -> CircleOperationProgress
fn clone(&self) -> CircleOperationProgress
Returns a duplicate of the value. Read more
1.0.0 · 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 CircleOperationProgress
impl Debug for CircleOperationProgress
Source§impl<'de> Deserialize<'de> for CircleOperationProgress
impl<'de> Deserialize<'de> for CircleOperationProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CircleOperationProgress
impl PartialEq for CircleOperationProgress
Source§impl Serialize for CircleOperationProgress
impl Serialize for CircleOperationProgress
impl Eq for CircleOperationProgress
impl StructuralPartialEq for CircleOperationProgress
Auto Trait Implementations§
impl Freeze for CircleOperationProgress
impl RefUnwindSafe for CircleOperationProgress
impl Send for CircleOperationProgress
impl Sync for CircleOperationProgress
impl Unpin for CircleOperationProgress
impl UnsafeUnpin for CircleOperationProgress
impl UnwindSafe for CircleOperationProgress
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.