pub enum ReconcileOutcome {
Absent,
Created(ExecutionReservation),
Creating,
Ready(ExecutionLease),
Failed,
}Expand description
Runtime evidence recovered after a service restart.
Variants§
Trait Implementations§
Source§impl Clone for ReconcileOutcome
impl Clone for ReconcileOutcome
Source§fn clone(&self) -> ReconcileOutcome
fn clone(&self) -> ReconcileOutcome
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 moreAuto Trait Implementations§
impl Freeze for ReconcileOutcome
impl RefUnwindSafe for ReconcileOutcome
impl Send for ReconcileOutcome
impl Sync for ReconcileOutcome
impl Unpin for ReconcileOutcome
impl UnsafeUnpin for ReconcileOutcome
impl UnwindSafe for ReconcileOutcome
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