pub struct ErsVerificationResult {
pub valid: bool,
pub sequences: Vec<SequenceCheck>,
}Expand description
Outcome of verify_evidence_record.
Fields§
§valid: boolTrue iff every sequence verified.
sequences: Vec<SequenceCheck>Per-sequence detail, in record order.
Trait Implementations§
Source§impl Clone for ErsVerificationResult
impl Clone for ErsVerificationResult
Source§fn clone(&self) -> ErsVerificationResult
fn clone(&self) -> ErsVerificationResult
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 ErsVerificationResult
impl Debug for ErsVerificationResult
Source§impl<'de> Deserialize<'de> for ErsVerificationResult
impl<'de> Deserialize<'de> for ErsVerificationResult
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 ErsVerificationResult
impl RefUnwindSafe for ErsVerificationResult
impl Send for ErsVerificationResult
impl Sync for ErsVerificationResult
impl Unpin for ErsVerificationResult
impl UnsafeUnpin for ErsVerificationResult
impl UnwindSafe for ErsVerificationResult
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