pub enum QuickIntegrityStatus {
CompleteClean,
CompleteWithFindings,
Uninspectable(IntegrityAuthorityDiagnostic),
UninspectableStorage(StorageTraversalCorruption),
ResourceLimited(IntegrityResourceDiagnostic),
}Expand description
Outcome of one bounded Quick integrity inspection.
Variants§
CompleteClean
Every bounded Quick family was inspected without findings.
CompleteWithFindings
Every bounded Quick family was inspected and definite findings exist.
Uninspectable(IntegrityAuthorityDiagnostic)
Load-bearing accepted authority could not be inspected.
UninspectableStorage(StorageTraversalCorruption)
A physical container could not prove progress or exhaustion.
ResourceLimited(IntegrityResourceDiagnostic)
The minimum bounded inspection atom could not be completed.
Trait Implementations§
Source§impl CandidType for QuickIntegrityStatus
impl CandidType for QuickIntegrityStatus
Source§impl Clone for QuickIntegrityStatus
impl Clone for QuickIntegrityStatus
Source§fn clone(&self) -> QuickIntegrityStatus
fn clone(&self) -> QuickIntegrityStatus
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 QuickIntegrityStatus
impl Debug for QuickIntegrityStatus
Source§impl<'de> Deserialize<'de> for QuickIntegrityStatus
impl<'de> Deserialize<'de> for QuickIntegrityStatus
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 QuickIntegrityStatus
Source§impl PartialEq for QuickIntegrityStatus
impl PartialEq for QuickIntegrityStatus
impl StructuralPartialEq for QuickIntegrityStatus
Auto Trait Implementations§
impl Freeze for QuickIntegrityStatus
impl RefUnwindSafe for QuickIntegrityStatus
impl Send for QuickIntegrityStatus
impl Sync for QuickIntegrityStatus
impl Unpin for QuickIntegrityStatus
impl UnsafeUnpin for QuickIntegrityStatus
impl UnwindSafe for QuickIntegrityStatus
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