pub struct ExternalUpgradeVerificationObservationV1 {
pub source: ExternalVerificationObservationSourceV1,
pub deployment_check_id: Option<String>,
pub deployment_check_digest: Option<String>,
pub inventory_id: Option<String>,
pub observed_at: Option<String>,
pub live_inventory_observed: bool,
pub controller_observation_present: bool,
pub observed_control_class: Option<CanisterControlClassV1>,
pub observed_module_hash: Option<String>,
pub observed_canonical_embedded_config_sha256: Option<String>,
pub protected_call_ready: Option<bool>,
}Expand description
ExternalUpgradeVerificationObservationV1
Fields§
§source: ExternalVerificationObservationSourceV1§deployment_check_id: Option<String>§deployment_check_digest: Option<String>§inventory_id: Option<String>§observed_at: Option<String>§live_inventory_observed: bool§controller_observation_present: bool§observed_control_class: Option<CanisterControlClassV1>§observed_module_hash: Option<String>§observed_canonical_embedded_config_sha256: Option<String>§protected_call_ready: Option<bool>Trait Implementations§
Source§impl Clone for ExternalUpgradeVerificationObservationV1
impl Clone for ExternalUpgradeVerificationObservationV1
Source§fn clone(&self) -> ExternalUpgradeVerificationObservationV1
fn clone(&self) -> ExternalUpgradeVerificationObservationV1
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 ExternalUpgradeVerificationObservationV1
impl<'de> Deserialize<'de> for ExternalUpgradeVerificationObservationV1
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 ExternalUpgradeVerificationObservationV1
impl PartialEq for ExternalUpgradeVerificationObservationV1
Source§fn eq(&self, other: &ExternalUpgradeVerificationObservationV1) -> bool
fn eq(&self, other: &ExternalUpgradeVerificationObservationV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExternalUpgradeVerificationObservationV1
impl StructuralPartialEq for ExternalUpgradeVerificationObservationV1
Auto Trait Implementations§
impl Freeze for ExternalUpgradeVerificationObservationV1
impl RefUnwindSafe for ExternalUpgradeVerificationObservationV1
impl Send for ExternalUpgradeVerificationObservationV1
impl Sync for ExternalUpgradeVerificationObservationV1
impl Unpin for ExternalUpgradeVerificationObservationV1
impl UnsafeUnpin for ExternalUpgradeVerificationObservationV1
impl UnwindSafe for ExternalUpgradeVerificationObservationV1
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