pub enum ReplayPlanCleanupEvidence<'a> {
Pending,
Closed(&'a PlanRuntimeCloseReceipt),
Quarantined(&'a PlanRuntimeQuarantineReceipt),
}Expand description
Independent root-cleanup evidence supplied while rebuilding replay. Pending is explicit and is accepted only when the caller allows pending cleanup. The receipt variants are core-signed outputs and cannot be deserialized or constructed by the replay caller.
Variants§
Trait Implementations§
Source§impl<'a> Clone for ReplayPlanCleanupEvidence<'a>
impl<'a> Clone for ReplayPlanCleanupEvidence<'a>
Source§fn clone(&self) -> ReplayPlanCleanupEvidence<'a>
fn clone(&self) -> ReplayPlanCleanupEvidence<'a>
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<'a> Copy for ReplayPlanCleanupEvidence<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReplayPlanCleanupEvidence<'a>
impl<'a> RefUnwindSafe for ReplayPlanCleanupEvidence<'a>
impl<'a> Send for ReplayPlanCleanupEvidence<'a>
impl<'a> Sync for ReplayPlanCleanupEvidence<'a>
impl<'a> Unpin for ReplayPlanCleanupEvidence<'a>
impl<'a> UnsafeUnpin for ReplayPlanCleanupEvidence<'a>
impl<'a> UnwindSafe for ReplayPlanCleanupEvidence<'a>
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