pub struct DeploymentRootObservationV1 {
pub deployment_name: String,
pub network: String,
pub fleet_template: String,
pub root_principal: String,
pub observed_canister_id: String,
pub observation_source: DeploymentRootObservationSourceV1,
pub control_class: CanisterControlClassV1,
pub controllers: Vec<String>,
pub module_hash: Option<String>,
pub status: Option<String>,
pub role_assignment_source: Option<String>,
}Expand description
DeploymentRootObservationV1
Fields§
§deployment_name: String§network: String§fleet_template: String§root_principal: String§observed_canister_id: String§observation_source: DeploymentRootObservationSourceV1§control_class: CanisterControlClassV1§controllers: Vec<String>§module_hash: Option<String>§status: Option<String>§role_assignment_source: Option<String>Trait Implementations§
Source§impl Clone for DeploymentRootObservationV1
impl Clone for DeploymentRootObservationV1
Source§fn clone(&self) -> DeploymentRootObservationV1
fn clone(&self) -> DeploymentRootObservationV1
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 DeploymentRootObservationV1
impl Debug for DeploymentRootObservationV1
Source§impl<'de> Deserialize<'de> for DeploymentRootObservationV1
impl<'de> Deserialize<'de> for DeploymentRootObservationV1
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 DeploymentRootObservationV1
impl PartialEq for DeploymentRootObservationV1
Source§fn eq(&self, other: &DeploymentRootObservationV1) -> bool
fn eq(&self, other: &DeploymentRootObservationV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DeploymentRootObservationV1
impl StructuralPartialEq for DeploymentRootObservationV1
Auto Trait Implementations§
impl Freeze for DeploymentRootObservationV1
impl RefUnwindSafe for DeploymentRootObservationV1
impl Send for DeploymentRootObservationV1
impl Sync for DeploymentRootObservationV1
impl Unpin for DeploymentRootObservationV1
impl UnsafeUnpin for DeploymentRootObservationV1
impl UnwindSafe for DeploymentRootObservationV1
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