pub struct ProofCertificate {
pub claim: VerifyClaim,
pub steps: Vec<ProofStep>,
pub axioms: Vec<String>,
pub checkable: bool,
}Expand description
A self-certifying proof certificate.
Fields§
§claim: VerifyClaim§steps: Vec<ProofStep>§axioms: Vec<String>§checkable: boolTrait Implementations§
Source§impl Clone for ProofCertificate
impl Clone for ProofCertificate
Source§fn clone(&self) -> ProofCertificate
fn clone(&self) -> ProofCertificate
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 ProofCertificate
impl Debug for ProofCertificate
Source§impl<'de> Deserialize<'de> for ProofCertificate
impl<'de> Deserialize<'de> for ProofCertificate
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
Auto Trait Implementations§
impl Freeze for ProofCertificate
impl RefUnwindSafe for ProofCertificate
impl Send for ProofCertificate
impl Sync for ProofCertificate
impl Unpin for ProofCertificate
impl UnsafeUnpin for ProofCertificate
impl UnwindSafe for ProofCertificate
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