pub struct CompletionAuditReportV1 {Show 17 fields
pub report_id: ArtifactId,
pub kind: ArtifactKindV1,
pub completion_state: CompletionAuditStateV1,
pub release_bar_passed: bool,
pub source_basis: String,
pub gate_results: Vec<GateCommandResultV1>,
pub release_readiness: ReleaseReadinessReportV1,
pub traceability_matrix: CrossPassTraceabilityMatrixV1,
pub release_artifact_manifest: ReleaseArtifactManifestV1,
pub known_limitations: KnownLimitationsRegisterV1,
pub regression_debt: RegressionDebtLedgerV1,
pub partial_surfaces: Vec<String>,
pub deferred_surfaces: Vec<String>,
pub blocked_surfaces: Vec<String>,
pub waiver_receipt_ids: Vec<String>,
pub reason_codes: Vec<String>,
pub generated_at: DateTime<Utc>,
}Fields§
§report_id: ArtifactId§kind: ArtifactKindV1§completion_state: CompletionAuditStateV1§release_bar_passed: bool§source_basis: String§gate_results: Vec<GateCommandResultV1>§release_readiness: ReleaseReadinessReportV1§traceability_matrix: CrossPassTraceabilityMatrixV1§release_artifact_manifest: ReleaseArtifactManifestV1§known_limitations: KnownLimitationsRegisterV1§regression_debt: RegressionDebtLedgerV1§partial_surfaces: Vec<String>§deferred_surfaces: Vec<String>§blocked_surfaces: Vec<String>§waiver_receipt_ids: Vec<String>§reason_codes: Vec<String>§generated_at: DateTime<Utc>Implementations§
Source§impl CompletionAuditReportV1
impl CompletionAuditReportV1
pub fn new( source_basis: impl Into<String>, gate_results: Vec<GateCommandResultV1>, release_readiness: ReleaseReadinessReportV1, traceability_matrix: CrossPassTraceabilityMatrixV1, release_artifact_manifest: ReleaseArtifactManifestV1, known_limitations: KnownLimitationsRegisterV1, regression_debt: RegressionDebtLedgerV1, ) -> Self
pub fn blocks_completion(&self) -> bool
Trait Implementations§
Source§impl Clone for CompletionAuditReportV1
impl Clone for CompletionAuditReportV1
Source§fn clone(&self) -> CompletionAuditReportV1
fn clone(&self) -> CompletionAuditReportV1
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 CompletionAuditReportV1
impl Debug for CompletionAuditReportV1
Source§impl<'de> Deserialize<'de> for CompletionAuditReportV1
impl<'de> Deserialize<'de> for CompletionAuditReportV1
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 JsonSchema for CompletionAuditReportV1
impl JsonSchema for CompletionAuditReportV1
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CompletionAuditReportV1
impl PartialEq for CompletionAuditReportV1
Source§fn eq(&self, other: &CompletionAuditReportV1) -> bool
fn eq(&self, other: &CompletionAuditReportV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CompletionAuditReportV1
impl Serialize for CompletionAuditReportV1
impl StructuralPartialEq for CompletionAuditReportV1
Auto Trait Implementations§
impl Freeze for CompletionAuditReportV1
impl RefUnwindSafe for CompletionAuditReportV1
impl Send for CompletionAuditReportV1
impl Sync for CompletionAuditReportV1
impl Unpin for CompletionAuditReportV1
impl UnsafeUnpin for CompletionAuditReportV1
impl UnwindSafe for CompletionAuditReportV1
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