pub enum ProofClosureHint {
FullChainVerified,
Partial,
Unknown,
Broken {
edge: String,
},
}Expand description
Authority proof closure hint for a candidate memory.
Variants§
FullChainVerified
All proof axes required by the caller passed.
Partial
At least one proof axis is intentionally unavailable or development-grade.
Unknown
Proof state has not been established.
Broken
A proof axis failed with a named edge.
Trait Implementations§
Source§impl Clone for ProofClosureHint
impl Clone for ProofClosureHint
Source§fn clone(&self) -> ProofClosureHint
fn clone(&self) -> ProofClosureHint
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 ProofClosureHint
impl Debug for ProofClosureHint
Source§impl PartialEq for ProofClosureHint
impl PartialEq for ProofClosureHint
Source§fn eq(&self, other: &ProofClosureHint) -> bool
fn eq(&self, other: &ProofClosureHint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ProofClosureHint
impl StructuralPartialEq for ProofClosureHint
Auto Trait Implementations§
impl Freeze for ProofClosureHint
impl RefUnwindSafe for ProofClosureHint
impl Send for ProofClosureHint
impl Sync for ProofClosureHint
impl Unpin for ProofClosureHint
impl UnsafeUnpin for ProofClosureHint
impl UnwindSafe for ProofClosureHint
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