pub struct CheClusterDevEnvironmentsDefaultComponentsCustom {
pub component_class: String,
pub embedded_resource: BTreeMap<String, Value>,
}Expand description
Custom component whose logic is implementation-dependant and should be provided by the user possibly through some dedicated controller
Fields§
§component_class: StringClass of component that the associated implementation controller should use to process this command with the appropriate logic
embedded_resource: BTreeMap<String, Value>Additional free-form configuration for this custom component that the implementation controller will know how to use
Trait Implementations§
Source§impl Clone for CheClusterDevEnvironmentsDefaultComponentsCustom
impl Clone for CheClusterDevEnvironmentsDefaultComponentsCustom
Source§fn clone(&self) -> CheClusterDevEnvironmentsDefaultComponentsCustom
fn clone(&self) -> CheClusterDevEnvironmentsDefaultComponentsCustom
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 CheClusterDevEnvironmentsDefaultComponentsCustom
impl Default for CheClusterDevEnvironmentsDefaultComponentsCustom
Source§fn default() -> CheClusterDevEnvironmentsDefaultComponentsCustom
fn default() -> CheClusterDevEnvironmentsDefaultComponentsCustom
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheClusterDevEnvironmentsDefaultComponentsCustom
impl<'de> Deserialize<'de> for CheClusterDevEnvironmentsDefaultComponentsCustom
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 CheClusterDevEnvironmentsDefaultComponentsCustom
impl PartialEq for CheClusterDevEnvironmentsDefaultComponentsCustom
Source§fn eq(&self, other: &CheClusterDevEnvironmentsDefaultComponentsCustom) -> bool
fn eq(&self, other: &CheClusterDevEnvironmentsDefaultComponentsCustom) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CheClusterDevEnvironmentsDefaultComponentsCustom
Auto Trait Implementations§
impl Freeze for CheClusterDevEnvironmentsDefaultComponentsCustom
impl RefUnwindSafe for CheClusterDevEnvironmentsDefaultComponentsCustom
impl Send for CheClusterDevEnvironmentsDefaultComponentsCustom
impl Sync for CheClusterDevEnvironmentsDefaultComponentsCustom
impl Unpin for CheClusterDevEnvironmentsDefaultComponentsCustom
impl UnwindSafe for CheClusterDevEnvironmentsDefaultComponentsCustom
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