pub struct DeploymentDiffV1 {Show 13 fields
pub schema_version: u32,
pub plan_identity: DeploymentIdentityV1,
pub observed_identity: Option<DeploymentIdentityV1>,
pub artifact_diff: Vec<DiffItemV1>,
pub controller_diff: Vec<DiffItemV1>,
pub pool_diff: Vec<DiffItemV1>,
pub embedded_config_diff: Vec<DiffItemV1>,
pub module_hash_diff: Vec<DiffItemV1>,
pub verifier_readiness_diff: Vec<DiffItemV1>,
pub resume_safety: ResumeSafetyV1,
pub hard_failures: Vec<SafetyFindingV1>,
pub warnings: Vec<SafetyFindingV1>,
pub resumable_phases: Vec<String>,
}Expand description
DeploymentDiffV1
Fields§
§schema_version: u32§plan_identity: DeploymentIdentityV1§observed_identity: Option<DeploymentIdentityV1>§artifact_diff: Vec<DiffItemV1>§controller_diff: Vec<DiffItemV1>§pool_diff: Vec<DiffItemV1>§embedded_config_diff: Vec<DiffItemV1>§module_hash_diff: Vec<DiffItemV1>§verifier_readiness_diff: Vec<DiffItemV1>§resume_safety: ResumeSafetyV1§hard_failures: Vec<SafetyFindingV1>§warnings: Vec<SafetyFindingV1>§resumable_phases: Vec<String>Trait Implementations§
Source§impl Clone for DeploymentDiffV1
impl Clone for DeploymentDiffV1
Source§fn clone(&self) -> DeploymentDiffV1
fn clone(&self) -> DeploymentDiffV1
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 DeploymentDiffV1
impl Debug for DeploymentDiffV1
Source§impl<'de> Deserialize<'de> for DeploymentDiffV1
impl<'de> Deserialize<'de> for DeploymentDiffV1
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 DeploymentDiffV1
impl PartialEq for DeploymentDiffV1
Source§fn eq(&self, other: &DeploymentDiffV1) -> bool
fn eq(&self, other: &DeploymentDiffV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeploymentDiffV1
impl Serialize for DeploymentDiffV1
impl Eq for DeploymentDiffV1
impl StructuralPartialEq for DeploymentDiffV1
Auto Trait Implementations§
impl Freeze for DeploymentDiffV1
impl RefUnwindSafe for DeploymentDiffV1
impl Send for DeploymentDiffV1
impl Sync for DeploymentDiffV1
impl Unpin for DeploymentDiffV1
impl UnsafeUnpin for DeploymentDiffV1
impl UnwindSafe for DeploymentDiffV1
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