pub struct VerifyReport {
pub projection_kinds: Vec<String>,
pub identity_subject: Option<String>,
pub flow_clean: bool,
pub has_adversarial_bid: bool,
}Expand description
Result of verify_receipt_fully. Holds the list of projection
kinds that successfully verified — clients can sanity-check this
against the set they expected to be present.
Fields§
§projection_kinds: Vec<String>§identity_subject: Option<String>Verified identity claims, when an Identity projection was present and verified.
flow_clean: boolWhether a Flow projection was present AND its consistency invariants held.
has_adversarial_bid: boolTrue iff a Flow projection reports has_adversarial_bid —
downstream consumers should refuse to trust the clearing.
Trait Implementations§
Source§impl Clone for VerifyReport
impl Clone for VerifyReport
Source§fn clone(&self) -> VerifyReport
fn clone(&self) -> VerifyReport
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 moreAuto Trait Implementations§
impl Freeze for VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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