pub struct ProjectEvidenceGateReportV1 {
pub schema_version: u32,
pub manifest_schema_version: u32,
pub project_name: String,
pub policy_file_fingerprint: InputFingerprintV1,
pub manifest_file_fingerprint: InputFingerprintV1,
pub policy_status: PolicyEvaluationStatusV1,
pub gate_exit_class: ExitClassV1,
pub evidence: Vec<ProjectEvidenceGateEntryReportV1>,
}Expand description
ProjectEvidenceGateReportV1
Fields§
§schema_version: u32§manifest_schema_version: u32§project_name: String§policy_file_fingerprint: InputFingerprintV1§manifest_file_fingerprint: InputFingerprintV1§policy_status: PolicyEvaluationStatusV1§gate_exit_class: ExitClassV1§evidence: Vec<ProjectEvidenceGateEntryReportV1>Trait Implementations§
Source§impl Clone for ProjectEvidenceGateReportV1
impl Clone for ProjectEvidenceGateReportV1
Source§fn clone(&self) -> ProjectEvidenceGateReportV1
fn clone(&self) -> ProjectEvidenceGateReportV1
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 ProjectEvidenceGateReportV1
impl Debug for ProjectEvidenceGateReportV1
Source§impl PartialEq for ProjectEvidenceGateReportV1
impl PartialEq for ProjectEvidenceGateReportV1
Source§fn eq(&self, other: &ProjectEvidenceGateReportV1) -> bool
fn eq(&self, other: &ProjectEvidenceGateReportV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ProjectEvidenceGateReportV1
impl StructuralPartialEq for ProjectEvidenceGateReportV1
Auto Trait Implementations§
impl Freeze for ProjectEvidenceGateReportV1
impl RefUnwindSafe for ProjectEvidenceGateReportV1
impl Send for ProjectEvidenceGateReportV1
impl Sync for ProjectEvidenceGateReportV1
impl Unpin for ProjectEvidenceGateReportV1
impl UnsafeUnpin for ProjectEvidenceGateReportV1
impl UnwindSafe for ProjectEvidenceGateReportV1
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