pub struct ConfigManagementHierarchyControllerDeploymentState {
pub extension: Option<String>,
pub hnc: Option<String>,
}Expand description
Deployment state for Hierarchy Controller
This type is not used in any activity, and only used as part of another schema.
Fields§
§extension: Option<String>The deployment state for Hierarchy Controller extension (e.g. v0.7.0-hc.1)
hnc: Option<String>The deployment state for open source HNC (e.g. v0.7.0-hc.0)
Trait Implementations§
Source§impl Clone for ConfigManagementHierarchyControllerDeploymentState
impl Clone for ConfigManagementHierarchyControllerDeploymentState
Source§fn clone(&self) -> ConfigManagementHierarchyControllerDeploymentState
fn clone(&self) -> ConfigManagementHierarchyControllerDeploymentState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ConfigManagementHierarchyControllerDeploymentState
impl Default for ConfigManagementHierarchyControllerDeploymentState
Source§fn default() -> ConfigManagementHierarchyControllerDeploymentState
fn default() -> ConfigManagementHierarchyControllerDeploymentState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigManagementHierarchyControllerDeploymentState
impl<'de> Deserialize<'de> for ConfigManagementHierarchyControllerDeploymentState
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
impl Part for ConfigManagementHierarchyControllerDeploymentState
Auto Trait Implementations§
impl Freeze for ConfigManagementHierarchyControllerDeploymentState
impl RefUnwindSafe for ConfigManagementHierarchyControllerDeploymentState
impl Send for ConfigManagementHierarchyControllerDeploymentState
impl Sync for ConfigManagementHierarchyControllerDeploymentState
impl Unpin for ConfigManagementHierarchyControllerDeploymentState
impl UnwindSafe for ConfigManagementHierarchyControllerDeploymentState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more