pub enum ContextProofStateValue {
Missing,
Partial,
Closed,
Failed,
}Expand description
Proof closure state vocabulary.
Variants§
Missing
No proof was supplied.
Partial
Proof is partial.
Closed
Proof is closed.
Failed
Proof failed.
Trait Implementations§
Source§impl Clone for ContextProofStateValue
impl Clone for ContextProofStateValue
Source§fn clone(&self) -> ContextProofStateValue
fn clone(&self) -> ContextProofStateValue
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 ContextProofStateValue
impl Debug for ContextProofStateValue
Source§impl<'de> Deserialize<'de> for ContextProofStateValue
impl<'de> Deserialize<'de> for ContextProofStateValue
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
Source§impl Hash for ContextProofStateValue
impl Hash for ContextProofStateValue
Source§impl PartialEq for ContextProofStateValue
impl PartialEq for ContextProofStateValue
Source§fn eq(&self, other: &ContextProofStateValue) -> bool
fn eq(&self, other: &ContextProofStateValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContextProofStateValue
impl Serialize for ContextProofStateValue
impl Copy for ContextProofStateValue
impl Eq for ContextProofStateValue
impl StructuralPartialEq for ContextProofStateValue
Auto Trait Implementations§
impl Freeze for ContextProofStateValue
impl RefUnwindSafe for ContextProofStateValue
impl Send for ContextProofStateValue
impl Sync for ContextProofStateValue
impl Unpin for ContextProofStateValue
impl UnsafeUnpin for ContextProofStateValue
impl UnwindSafe for ContextProofStateValue
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