pub struct DecodeProofVerificationReport {Show 18 fields
pub ok: bool,
pub expected_schema_version: u16,
pub expected_policy_id: u32,
pub decode_success_slack: u32,
pub schema_version_ok: bool,
pub policy_id_ok: bool,
pub internal_consistency_ok: bool,
pub metadata_hash_ok: bool,
pub source_hash_ok: bool,
pub repair_hash_ok: bool,
pub rejected_hash_ok: bool,
pub symbol_digests_hash_ok: bool,
pub replay_verifies: bool,
pub decode_success_budget_ok: bool,
pub decode_success_expected_min_symbols: u32,
pub decode_success_observed_symbols: u32,
pub rejected_reasons_hash_or_auth_only: bool,
pub issues: Vec<DecodeProofVerificationIssue>,
}Expand description
Deterministic, structured report emitted by proof verification tooling.
Fields§
§ok: bool§expected_schema_version: u16§expected_policy_id: u32§decode_success_slack: u32§schema_version_ok: bool§policy_id_ok: bool§internal_consistency_ok: bool§metadata_hash_ok: bool§source_hash_ok: bool§repair_hash_ok: bool§rejected_hash_ok: bool§symbol_digests_hash_ok: bool§replay_verifies: bool§decode_success_budget_ok: bool§decode_success_expected_min_symbols: u32§decode_success_observed_symbols: u32§rejected_reasons_hash_or_auth_only: bool§issues: Vec<DecodeProofVerificationIssue>Trait Implementations§
Source§impl Clone for DecodeProofVerificationReport
impl Clone for DecodeProofVerificationReport
Source§fn clone(&self) -> DecodeProofVerificationReport
fn clone(&self) -> DecodeProofVerificationReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DecodeProofVerificationReport
impl<'de> Deserialize<'de> for DecodeProofVerificationReport
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 DecodeProofVerificationReport
impl PartialEq for DecodeProofVerificationReport
Source§fn eq(&self, other: &DecodeProofVerificationReport) -> bool
fn eq(&self, other: &DecodeProofVerificationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DecodeProofVerificationReport
impl StructuralPartialEq for DecodeProofVerificationReport
Auto Trait Implementations§
impl Freeze for DecodeProofVerificationReport
impl RefUnwindSafe for DecodeProofVerificationReport
impl Send for DecodeProofVerificationReport
impl Sync for DecodeProofVerificationReport
impl Unpin for DecodeProofVerificationReport
impl UnsafeUnpin for DecodeProofVerificationReport
impl UnwindSafe for DecodeProofVerificationReport
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,
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.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).