pub enum IntegrityAbortStatus {
TerminationPending(IntegrityPendingTerminal),
Terminal(IntegrityTerminalOutcome),
}Expand description
Abort receipt status.
Variants§
TerminationPending(IntegrityPendingTerminal)
Abort is frozen but cannot replace the outstanding page yet.
Terminal(IntegrityTerminalOutcome)
The terminal abort result is replayable.
Trait Implementations§
Source§impl CandidType for IntegrityAbortStatus
impl CandidType for IntegrityAbortStatus
Source§impl Clone for IntegrityAbortStatus
impl Clone for IntegrityAbortStatus
Source§fn clone(&self) -> IntegrityAbortStatus
fn clone(&self) -> IntegrityAbortStatus
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 IntegrityAbortStatus
impl Debug for IntegrityAbortStatus
Source§impl<'de> Deserialize<'de> for IntegrityAbortStatus
impl<'de> Deserialize<'de> for IntegrityAbortStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for IntegrityAbortStatus
Source§impl PartialEq for IntegrityAbortStatus
impl PartialEq for IntegrityAbortStatus
impl StructuralPartialEq for IntegrityAbortStatus
Auto Trait Implementations§
impl Freeze for IntegrityAbortStatus
impl RefUnwindSafe for IntegrityAbortStatus
impl Send for IntegrityAbortStatus
impl Sync for IntegrityAbortStatus
impl Unpin for IntegrityAbortStatus
impl UnsafeUnpin for IntegrityAbortStatus
impl UnwindSafe for IntegrityAbortStatus
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