pub struct DeploymentRootVerificationReportV1 {Show 29 fields
pub schema_version: u32,
pub report_id: String,
pub report_digest: String,
pub requested_at: String,
pub evidence_status: DeploymentRootVerificationEvidenceStatusV1,
pub state_transition: DeploymentRootVerificationStateTransitionV1,
pub deployment_name: String,
pub network: String,
pub expected_fleet_template: String,
pub expected_root_principal: String,
pub observed_deployment_name: Option<String>,
pub observed_network: Option<String>,
pub observed_fleet_template: Option<String>,
pub observed_root_principal: Option<String>,
pub observed_root_canister_id: Option<String>,
pub observed_root_observation_source: Option<DeploymentRootObservationSourceV1>,
pub source: DeploymentRootVerificationSourceV1,
pub source_check_id: String,
pub source_check_digest: String,
pub source_deployment_plan_id: String,
pub source_deployment_plan_digest: String,
pub source_inventory_id: String,
pub source_inventory_digest: String,
pub current_root_verification: DeploymentRootVerificationStateV1,
pub identity_checks: Vec<DeploymentRootVerificationCheckV1>,
pub evidence_checks: Vec<DeploymentRootVerificationCheckV1>,
pub blockers: Vec<SafetyFindingV1>,
pub warnings: Vec<SafetyFindingV1>,
pub recommended_next_actions: Vec<String>,
}Expand description
DeploymentRootVerificationReportV1
Fields§
§schema_version: u32§report_id: String§report_digest: String§requested_at: String§evidence_status: DeploymentRootVerificationEvidenceStatusV1§state_transition: DeploymentRootVerificationStateTransitionV1§deployment_name: String§network: String§expected_fleet_template: String§expected_root_principal: String§observed_deployment_name: Option<String>§observed_network: Option<String>§observed_fleet_template: Option<String>§observed_root_principal: Option<String>§observed_root_canister_id: Option<String>§observed_root_observation_source: Option<DeploymentRootObservationSourceV1>§source: DeploymentRootVerificationSourceV1§source_check_id: String§source_check_digest: String§source_deployment_plan_id: String§source_deployment_plan_digest: String§source_inventory_id: String§source_inventory_digest: String§current_root_verification: DeploymentRootVerificationStateV1§identity_checks: Vec<DeploymentRootVerificationCheckV1>§evidence_checks: Vec<DeploymentRootVerificationCheckV1>§blockers: Vec<SafetyFindingV1>§warnings: Vec<SafetyFindingV1>§recommended_next_actions: Vec<String>Trait Implementations§
Source§impl Clone for DeploymentRootVerificationReportV1
impl Clone for DeploymentRootVerificationReportV1
Source§fn clone(&self) -> DeploymentRootVerificationReportV1
fn clone(&self) -> DeploymentRootVerificationReportV1
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<'de> Deserialize<'de> for DeploymentRootVerificationReportV1
impl<'de> Deserialize<'de> for DeploymentRootVerificationReportV1
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 DeploymentRootVerificationReportV1
impl PartialEq for DeploymentRootVerificationReportV1
Source§fn eq(&self, other: &DeploymentRootVerificationReportV1) -> bool
fn eq(&self, other: &DeploymentRootVerificationReportV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DeploymentRootVerificationReportV1
impl StructuralPartialEq for DeploymentRootVerificationReportV1
Auto Trait Implementations§
impl Freeze for DeploymentRootVerificationReportV1
impl RefUnwindSafe for DeploymentRootVerificationReportV1
impl Send for DeploymentRootVerificationReportV1
impl Sync for DeploymentRootVerificationReportV1
impl Unpin for DeploymentRootVerificationReportV1
impl UnsafeUnpin for DeploymentRootVerificationReportV1
impl UnwindSafe for DeploymentRootVerificationReportV1
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