pub enum CompletionState {
Success,
Fault,
Cancelled,
Compensated,
}Expand description
Final completion state tracked for a persisted trace.
Variants§
Trait Implementations§
Source§impl Clone for CompletionState
impl Clone for CompletionState
Source§fn clone(&self) -> CompletionState
fn clone(&self) -> CompletionState
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 CompletionState
impl Debug for CompletionState
Source§impl<'de> Deserialize<'de> for CompletionState
impl<'de> Deserialize<'de> for CompletionState
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 CompletionState
impl PartialEq for CompletionState
Source§impl Serialize for CompletionState
impl Serialize for CompletionState
impl Eq for CompletionState
impl StructuralPartialEq for CompletionState
Auto Trait Implementations§
impl Freeze for CompletionState
impl RefUnwindSafe for CompletionState
impl Send for CompletionState
impl Sync for CompletionState
impl Unpin for CompletionState
impl UnsafeUnpin for CompletionState
impl UnwindSafe for CompletionState
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