pub struct DeploymentPlanV1 {
pub schema_version: u32,
pub plan_id: String,
pub deployment_identity: DeploymentIdentityV1,
pub trust_domain: TrustDomainV1,
pub fleet_template: String,
pub runtime_variant: String,
pub authority_profile: AuthorityProfileV1,
pub role_artifacts: Vec<RoleArtifactV1>,
pub expected_canisters: Vec<ExpectedCanisterV1>,
pub expected_pool: Vec<ExpectedPoolCanisterV1>,
pub expected_verifier_readiness: VerifierReadinessExpectationV1,
pub unresolved_assumptions: Vec<DeploymentAssumptionV1>,
}Expand description
DeploymentPlanV1
Fields§
§schema_version: u32§plan_id: String§deployment_identity: DeploymentIdentityV1§trust_domain: TrustDomainV1§fleet_template: String§runtime_variant: String§role_artifacts: Vec<RoleArtifactV1>§expected_canisters: Vec<ExpectedCanisterV1>§expected_pool: Vec<ExpectedPoolCanisterV1>§expected_verifier_readiness: VerifierReadinessExpectationV1§unresolved_assumptions: Vec<DeploymentAssumptionV1>Trait Implementations§
Source§impl Clone for DeploymentPlanV1
impl Clone for DeploymentPlanV1
Source§fn clone(&self) -> DeploymentPlanV1
fn clone(&self) -> DeploymentPlanV1
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 DeploymentPlanV1
impl Debug for DeploymentPlanV1
Source§impl<'de> Deserialize<'de> for DeploymentPlanV1
impl<'de> Deserialize<'de> for DeploymentPlanV1
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 DeploymentPlanV1
impl PartialEq for DeploymentPlanV1
Source§fn eq(&self, other: &DeploymentPlanV1) -> bool
fn eq(&self, other: &DeploymentPlanV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeploymentPlanV1
impl Serialize for DeploymentPlanV1
impl Eq for DeploymentPlanV1
impl StructuralPartialEq for DeploymentPlanV1
Auto Trait Implementations§
impl Freeze for DeploymentPlanV1
impl RefUnwindSafe for DeploymentPlanV1
impl Send for DeploymentPlanV1
impl Sync for DeploymentPlanV1
impl Unpin for DeploymentPlanV1
impl UnsafeUnpin for DeploymentPlanV1
impl UnwindSafe for DeploymentPlanV1
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