pub struct DeploymentIdentityV1 {
pub deployment_name: String,
pub network: String,
pub root_principal: Option<String>,
pub authority_profile_hash: Option<String>,
pub role_topology_hash: Option<String>,
pub deployment_manifest_digest: Option<String>,
pub canonical_runtime_config_digest: Option<String>,
pub role_embedded_config_set_digest: Option<String>,
pub artifact_set_digest: Option<String>,
pub pool_identity_set_digest: Option<String>,
pub canic_version: Option<String>,
pub ic_memory_version: Option<String>,
}Expand description
DeploymentIdentityV1
Fields§
§deployment_name: String§network: String§root_principal: Option<String>§role_topology_hash: Option<String>§deployment_manifest_digest: Option<String>§canonical_runtime_config_digest: Option<String>§role_embedded_config_set_digest: Option<String>§artifact_set_digest: Option<String>§pool_identity_set_digest: Option<String>§canic_version: Option<String>§ic_memory_version: Option<String>Trait Implementations§
Source§impl Clone for DeploymentIdentityV1
impl Clone for DeploymentIdentityV1
Source§fn clone(&self) -> DeploymentIdentityV1
fn clone(&self) -> DeploymentIdentityV1
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 DeploymentIdentityV1
impl Debug for DeploymentIdentityV1
Source§impl<'de> Deserialize<'de> for DeploymentIdentityV1
impl<'de> Deserialize<'de> for DeploymentIdentityV1
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 DeploymentIdentityV1
impl PartialEq for DeploymentIdentityV1
Source§fn eq(&self, other: &DeploymentIdentityV1) -> bool
fn eq(&self, other: &DeploymentIdentityV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeploymentIdentityV1
impl Serialize for DeploymentIdentityV1
impl Eq for DeploymentIdentityV1
impl StructuralPartialEq for DeploymentIdentityV1
Auto Trait Implementations§
impl Freeze for DeploymentIdentityV1
impl RefUnwindSafe for DeploymentIdentityV1
impl Send for DeploymentIdentityV1
impl Sync for DeploymentIdentityV1
impl Unpin for DeploymentIdentityV1
impl UnsafeUnpin for DeploymentIdentityV1
impl UnwindSafe for DeploymentIdentityV1
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