pub struct EvidenceEnvelopeVerification {
pub manifest_id: Option<String>,
pub manifest_hash: Option<String>,
pub native_evidence_hash: Option<String>,
pub verified: Option<bool>,
pub authoritative: Option<bool>,
pub errors: Option<Vec<String>>,
pub checked_at: Option<String>,
}Fields§
§manifest_id: Option<String>§manifest_hash: Option<String>§native_evidence_hash: Option<String>§verified: Option<bool>§errors: Option<Vec<String>>§checked_at: Option<String>Implementations§
Source§impl EvidenceEnvelopeVerification
impl EvidenceEnvelopeVerification
pub fn new() -> EvidenceEnvelopeVerification
Trait Implementations§
Source§impl Clone for EvidenceEnvelopeVerification
impl Clone for EvidenceEnvelopeVerification
Source§fn clone(&self) -> EvidenceEnvelopeVerification
fn clone(&self) -> EvidenceEnvelopeVerification
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 EvidenceEnvelopeVerification
impl Debug for EvidenceEnvelopeVerification
Source§impl Default for EvidenceEnvelopeVerification
impl Default for EvidenceEnvelopeVerification
Source§fn default() -> EvidenceEnvelopeVerification
fn default() -> EvidenceEnvelopeVerification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvidenceEnvelopeVerification
impl<'de> Deserialize<'de> for EvidenceEnvelopeVerification
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 PartialEq for EvidenceEnvelopeVerification
impl PartialEq for EvidenceEnvelopeVerification
Source§fn eq(&self, other: &EvidenceEnvelopeVerification) -> bool
fn eq(&self, other: &EvidenceEnvelopeVerification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EvidenceEnvelopeVerification
Auto Trait Implementations§
impl Freeze for EvidenceEnvelopeVerification
impl RefUnwindSafe for EvidenceEnvelopeVerification
impl Send for EvidenceEnvelopeVerification
impl Sync for EvidenceEnvelopeVerification
impl Unpin for EvidenceEnvelopeVerification
impl UnsafeUnpin for EvidenceEnvelopeVerification
impl UnwindSafe for EvidenceEnvelopeVerification
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