pub enum DiscardOutcome {
Discarded,
AlreadyDiscarded,
Unknown,
}Expand description
Result of discarding a sealed plan from the durable store.
Variants§
Discarded
The authenticated plan document was removed.
AlreadyDiscarded
A durable disposal marker proves an earlier request removed the plan.
Unknown
Neither a plan nor a disposal marker has ever existed at this address.
Trait Implementations§
Source§impl Clone for DiscardOutcome
impl Clone for DiscardOutcome
Source§fn clone(&self) -> DiscardOutcome
fn clone(&self) -> DiscardOutcome
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 DiscardOutcome
Source§impl Debug for DiscardOutcome
impl Debug for DiscardOutcome
impl Eq for DiscardOutcome
Source§impl PartialEq for DiscardOutcome
impl PartialEq for DiscardOutcome
impl StructuralPartialEq for DiscardOutcome
Auto Trait Implementations§
impl Freeze for DiscardOutcome
impl RefUnwindSafe for DiscardOutcome
impl Send for DiscardOutcome
impl Sync for DiscardOutcome
impl Unpin for DiscardOutcome
impl UnsafeUnpin for DiscardOutcome
impl UnwindSafe for DiscardOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.