pub enum PriorReconcileRecoveryOutcome {
Recovered {
activity_id: String,
attempt_id: String,
decision: String,
},
FreshRetry {
activity_id: String,
attempt_id: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for PriorReconcileRecoveryOutcome
impl Clone for PriorReconcileRecoveryOutcome
Source§fn clone(&self) -> PriorReconcileRecoveryOutcome
fn clone(&self) -> PriorReconcileRecoveryOutcome
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 Eq for PriorReconcileRecoveryOutcome
Source§impl PartialEq for PriorReconcileRecoveryOutcome
impl PartialEq for PriorReconcileRecoveryOutcome
Source§fn eq(&self, other: &PriorReconcileRecoveryOutcome) -> bool
fn eq(&self, other: &PriorReconcileRecoveryOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PriorReconcileRecoveryOutcome
Auto Trait Implementations§
impl Freeze for PriorReconcileRecoveryOutcome
impl RefUnwindSafe for PriorReconcileRecoveryOutcome
impl Send for PriorReconcileRecoveryOutcome
impl Sync for PriorReconcileRecoveryOutcome
impl Unpin for PriorReconcileRecoveryOutcome
impl UnsafeUnpin for PriorReconcileRecoveryOutcome
impl UnwindSafe for PriorReconcileRecoveryOutcome
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