pub enum DeepIntegrityPageStatus {
InProgress,
Terminal(IntegrityTerminalOutcome),
}Expand description
Semantic status carried by one bounded Deep page.
Variants§
InProgress
More physical work or the final proof check remains.
Terminal(IntegrityTerminalOutcome)
This receipt records the stable terminal result.
Trait Implementations§
Source§impl CandidType for DeepIntegrityPageStatus
impl CandidType for DeepIntegrityPageStatus
Source§impl Clone for DeepIntegrityPageStatus
impl Clone for DeepIntegrityPageStatus
Source§fn clone(&self) -> DeepIntegrityPageStatus
fn clone(&self) -> DeepIntegrityPageStatus
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 DeepIntegrityPageStatus
impl Debug for DeepIntegrityPageStatus
Source§impl<'de> Deserialize<'de> for DeepIntegrityPageStatus
impl<'de> Deserialize<'de> for DeepIntegrityPageStatus
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 DeepIntegrityPageStatus
Source§impl PartialEq for DeepIntegrityPageStatus
impl PartialEq for DeepIntegrityPageStatus
impl StructuralPartialEq for DeepIntegrityPageStatus
Auto Trait Implementations§
impl Freeze for DeepIntegrityPageStatus
impl RefUnwindSafe for DeepIntegrityPageStatus
impl Send for DeepIntegrityPageStatus
impl Sync for DeepIntegrityPageStatus
impl Unpin for DeepIntegrityPageStatus
impl UnsafeUnpin for DeepIntegrityPageStatus
impl UnwindSafe for DeepIntegrityPageStatus
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