pub trait HostProfileConfigSpecTrait: ProfileCreateSpecTrait {
// Required methods
fn get_host_profile_config_spec(&self) -> &HostProfileConfigSpec;
fn get_host_profile_config_spec_mut(&mut self) -> &mut HostProfileConfigSpec;
}Expand description
HostProfileConfigSpec is the base data object for all HostProfile configuration specifications.
§How to access
HostProfile::update_host_profile(config)HostProfileManager::create_profile(create_spec)⇒HostProfileConfigSpecTraitProfileManager::create_profile(create_spec)⇒HostProfileConfigSpecTraitClusterProfileManager::create_profile(create_spec)⇒HostProfileConfigSpecTrait
Required Methods§
Sourcefn get_host_profile_config_spec(&self) -> &HostProfileConfigSpec
fn get_host_profile_config_spec(&self) -> &HostProfileConfigSpec
Get a reference to the HostProfileConfigSpec parent struct
Sourcefn get_host_profile_config_spec_mut(&mut self) -> &mut HostProfileConfigSpec
fn get_host_profile_config_spec_mut(&mut self) -> &mut HostProfileConfigSpec
Get a mutable reference to the HostProfileConfigSpec parent struct