pub struct EnvelopeVerificationReport {
pub digest_valid: bool,
pub signature_valid: bool,
pub signer_authorized: bool,
pub time_valid: bool,
pub policy_admitted: bool,
pub status: EnvelopeVerificationStatus,
}Expand description
Independent verification-stage results plus the highest reached status.
Fields§
§digest_valid: boolArtifact digest matches.
signature_valid: boolEd25519 signature verifies.
Signer is authorized by verifier policy.
time_valid: boolTrusted timestamp is inside the verifier window.
policy_admitted: boolProducer and verifier both admit the policy.
status: EnvelopeVerificationStatusHighest verification stage reached.
Trait Implementations§
Source§impl Clone for EnvelopeVerificationReport
impl Clone for EnvelopeVerificationReport
Source§fn clone(&self) -> EnvelopeVerificationReport
fn clone(&self) -> EnvelopeVerificationReport
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 EnvelopeVerificationReport
impl Debug for EnvelopeVerificationReport
Source§impl<'de> Deserialize<'de> for EnvelopeVerificationReport
impl<'de> Deserialize<'de> for EnvelopeVerificationReport
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 EnvelopeVerificationReport
impl StructuralPartialEq for EnvelopeVerificationReport
Auto Trait Implementations§
impl Freeze for EnvelopeVerificationReport
impl RefUnwindSafe for EnvelopeVerificationReport
impl Send for EnvelopeVerificationReport
impl Sync for EnvelopeVerificationReport
impl Unpin for EnvelopeVerificationReport
impl UnsafeUnpin for EnvelopeVerificationReport
impl UnwindSafe for EnvelopeVerificationReport
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