pub struct DeploymentComparisonReportV1 {Show 18 fields
pub schema_version: u32,
pub report_id: String,
pub report_digest: String,
pub compared_at: String,
pub left: DeploymentComparisonTargetV1,
pub right: DeploymentComparisonTargetV1,
pub status: SafetyStatusV1,
pub identity_diff: Vec<DeploymentComparisonDiffV1>,
pub artifact_diff: Vec<DeploymentComparisonDiffV1>,
pub module_hash_diff: Vec<DeploymentComparisonDiffV1>,
pub embedded_config_diff: Vec<DeploymentComparisonDiffV1>,
pub authority_diff: Vec<DeploymentComparisonDiffV1>,
pub pool_diff: Vec<DeploymentComparisonDiffV1>,
pub verifier_readiness_diff: Vec<DeploymentComparisonDiffV1>,
pub external_lifecycle_diff: Vec<DeploymentComparisonDiffV1>,
pub hard_failures: Vec<SafetyFindingV1>,
pub warnings: Vec<SafetyFindingV1>,
pub next_actions: Vec<String>,
}Expand description
DeploymentComparisonReportV1
Fields§
§schema_version: u32§report_id: String§report_digest: String§compared_at: String§left: DeploymentComparisonTargetV1§right: DeploymentComparisonTargetV1§status: SafetyStatusV1§identity_diff: Vec<DeploymentComparisonDiffV1>§artifact_diff: Vec<DeploymentComparisonDiffV1>§module_hash_diff: Vec<DeploymentComparisonDiffV1>§embedded_config_diff: Vec<DeploymentComparisonDiffV1>§pool_diff: Vec<DeploymentComparisonDiffV1>§verifier_readiness_diff: Vec<DeploymentComparisonDiffV1>§external_lifecycle_diff: Vec<DeploymentComparisonDiffV1>§hard_failures: Vec<SafetyFindingV1>§warnings: Vec<SafetyFindingV1>§next_actions: Vec<String>Trait Implementations§
Source§impl Clone for DeploymentComparisonReportV1
impl Clone for DeploymentComparisonReportV1
Source§fn clone(&self) -> DeploymentComparisonReportV1
fn clone(&self) -> DeploymentComparisonReportV1
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 DeploymentComparisonReportV1
impl Debug for DeploymentComparisonReportV1
Source§impl<'de> Deserialize<'de> for DeploymentComparisonReportV1
impl<'de> Deserialize<'de> for DeploymentComparisonReportV1
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 DeploymentComparisonReportV1
impl PartialEq for DeploymentComparisonReportV1
Source§fn eq(&self, other: &DeploymentComparisonReportV1) -> bool
fn eq(&self, other: &DeploymentComparisonReportV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DeploymentComparisonReportV1
impl StructuralPartialEq for DeploymentComparisonReportV1
Auto Trait Implementations§
impl Freeze for DeploymentComparisonReportV1
impl RefUnwindSafe for DeploymentComparisonReportV1
impl Send for DeploymentComparisonReportV1
impl Sync for DeploymentComparisonReportV1
impl Unpin for DeploymentComparisonReportV1
impl UnsafeUnpin for DeploymentComparisonReportV1
impl UnwindSafe for DeploymentComparisonReportV1
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