pub struct ProjectedVerificationSummary {Show 14 fields
pub claim_id: String,
pub claim_version_id: String,
pub lifecycle_state: ProjectedVerificationLifecycle,
pub promotion_state: ProjectedPromotionState,
pub claim_state: String,
pub freshness: String,
pub contradiction_status: String,
pub completed_trial_count: u32,
pub passed_refutation_count: u32,
pub failed_refutation_count: u32,
pub comparability_snapshot_version: Option<String>,
pub notes: Vec<String>,
pub source_envelope_id: String,
pub recorded_at: String,
}Expand description
Runtime-facing typed read of verification and promotion state.
Fields§
§claim_id: String§claim_version_id: String§lifecycle_state: ProjectedVerificationLifecycle§promotion_state: ProjectedPromotionState§claim_state: String§freshness: String§contradiction_status: String§completed_trial_count: u32§passed_refutation_count: u32§failed_refutation_count: u32§comparability_snapshot_version: Option<String>§notes: Vec<String>§source_envelope_id: String§recorded_at: StringTrait Implementations§
Source§impl Clone for ProjectedVerificationSummary
impl Clone for ProjectedVerificationSummary
Source§fn clone(&self) -> ProjectedVerificationSummary
fn clone(&self) -> ProjectedVerificationSummary
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 ProjectedVerificationSummary
impl Debug for ProjectedVerificationSummary
Source§impl<'de> Deserialize<'de> for ProjectedVerificationSummary
impl<'de> Deserialize<'de> for ProjectedVerificationSummary
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
impl Eq for ProjectedVerificationSummary
Source§impl PartialEq for ProjectedVerificationSummary
impl PartialEq for ProjectedVerificationSummary
Source§fn eq(&self, other: &ProjectedVerificationSummary) -> bool
fn eq(&self, other: &ProjectedVerificationSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProjectedVerificationSummary
Auto Trait Implementations§
impl Freeze for ProjectedVerificationSummary
impl RefUnwindSafe for ProjectedVerificationSummary
impl Send for ProjectedVerificationSummary
impl Sync for ProjectedVerificationSummary
impl Unpin for ProjectedVerificationSummary
impl UnsafeUnpin for ProjectedVerificationSummary
impl UnwindSafe for ProjectedVerificationSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.