#[non_exhaustive]pub enum EffectReconciliation {
Completed(Value),
NotExecuted,
Ambiguous,
}Expand description
Result of querying an external system for an ambiguously started effect.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Completed(Value)
The remote operation completed and this is its canonical output.
NotExecuted
The remote system proves the operation did not execute.
Ambiguous
The remote system cannot determine the outcome safely.
Trait Implementations§
Source§impl Clone for EffectReconciliation
impl Clone for EffectReconciliation
Source§fn clone(&self) -> EffectReconciliation
fn clone(&self) -> EffectReconciliation
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 EffectReconciliation
impl Debug for EffectReconciliation
Source§impl PartialEq for EffectReconciliation
impl PartialEq for EffectReconciliation
impl StructuralPartialEq for EffectReconciliation
Auto Trait Implementations§
impl Freeze for EffectReconciliation
impl RefUnwindSafe for EffectReconciliation
impl Send for EffectReconciliation
impl Sync for EffectReconciliation
impl Unpin for EffectReconciliation
impl UnsafeUnpin for EffectReconciliation
impl UnwindSafe for EffectReconciliation
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