pub enum AssuranceLevel {
ClaimedBySender,
ObservedByReceiver,
CrossAcknowledged,
EffectConfirmed,
IndependentlyWitnessed,
}Expand description
Assurance level for a causal edge or effect claim.
Variants§
ClaimedBySender
One participant claimed the edge.
ObservedByReceiver
The receiver observed the invocation.
CrossAcknowledged
Sender and receiver cross-acknowledged the edge.
EffectConfirmed
The operation effect was confirmed by a responsible component.
IndependentlyWitnessed
An independent witness recorded a commitment.
Trait Implementations§
Source§impl Clone for AssuranceLevel
impl Clone for AssuranceLevel
Source§fn clone(&self) -> AssuranceLevel
fn clone(&self) -> AssuranceLevel
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 moreimpl Copy for AssuranceLevel
Source§impl Debug for AssuranceLevel
impl Debug for AssuranceLevel
impl Eq for AssuranceLevel
Source§impl PartialEq for AssuranceLevel
impl PartialEq for AssuranceLevel
Source§fn eq(&self, other: &AssuranceLevel) -> bool
fn eq(&self, other: &AssuranceLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AssuranceLevel
impl PartialOrd for AssuranceLevel
impl StructuralPartialEq for AssuranceLevel
Auto Trait Implementations§
impl Freeze for AssuranceLevel
impl RefUnwindSafe for AssuranceLevel
impl Send for AssuranceLevel
impl Sync for AssuranceLevel
impl Unpin for AssuranceLevel
impl UnsafeUnpin for AssuranceLevel
impl UnwindSafe for AssuranceLevel
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