pub trait ClusterProfileConfigSpecTrait: ClusterProfileCreateSpecTrait {
// Required methods
fn get_cluster_profile_config_spec(&self) -> &ClusterProfileConfigSpec;
fn get_cluster_profile_config_spec_mut(
&mut self,
) -> &mut ClusterProfileConfigSpec;
}Expand description
DataObject which is a baseclass for other configuration specifications.
§How to access
ClusterProfile::update_cluster_profile(config)HostProfileManager::create_profile(create_spec)⇒ClusterProfileConfigSpecTraitProfileManager::create_profile(create_spec)⇒ClusterProfileConfigSpecTraitClusterProfileManager::create_profile(create_spec)⇒ClusterProfileConfigSpecTrait
Required Methods§
Sourcefn get_cluster_profile_config_spec(&self) -> &ClusterProfileConfigSpec
fn get_cluster_profile_config_spec(&self) -> &ClusterProfileConfigSpec
Get a reference to the ClusterProfileConfigSpec parent struct
Sourcefn get_cluster_profile_config_spec_mut(
&mut self,
) -> &mut ClusterProfileConfigSpec
fn get_cluster_profile_config_spec_mut( &mut self, ) -> &mut ClusterProfileConfigSpec
Get a mutable reference to the ClusterProfileConfigSpec parent struct