pub struct LongOption {
pub option_type_: OptionType,
pub min: i64,
pub max: i64,
pub default_value: i64,
}Expand description
The LongOption data object type is used to define the minimum, maximum, and default values for a 64-bit long option.
§How to access
ClusterComputeResource::action_history.action→StoragePlacementAction.relocate_spec.device_change?[*].device.device_info?→OptionDef.option_type→LongOptionClusterComputeResource::action_history.action→StorageMigrationAction.relocate_spec.device_change?[*].device.device_info?→OptionDef.option_type→LongOptionClusterComputeResource::action_history.action→PlacementAction.relocate_spec?.device_change?[*].device.device_info?→OptionDef.option_type→LongOptionClusterComputeResource::action_history.action→ClusterClusterInitialPlacementAction.config_spec?.device_change?[*].device.device_info?→OptionDef.option_type→LongOptionClusterComputeResource::action_history.action→ClusterClusterInitialPlacementAction.config_spec?.device_groups?.device_group?[*].device_info?→OptionDef.option_type→LongOptionAlarmManager::description.state_operator[*]→OptionDef.option_type→LongOptionAlarmManager::description.metric_operator[*]→OptionDef.option_type→LongOptionAlarmManager::description.host_system_connection_state[*]→OptionDef.option_type→LongOptionAlarmManager::description.virtual_machine_power_state[*]→OptionDef.option_type→LongOptionAlarmManager::description.datastore_connection_state[*]→OptionDef.option_type→LongOption
(10 of 100 paths)
Fields§
§option_type_: OptionType§min: i64The minimum value.
max: i64The maximum value.
default_value: i64The default value.
Trait Implementations§
Source§impl Debug for LongOption
impl Debug for LongOption
Source§impl Deref for LongOption
impl Deref for LongOption
Source§impl DerefMut for LongOption
impl DerefMut for LongOption
Source§impl Deserialize for LongOption
impl Deserialize for LongOption
Source§impl OptionTypeTrait for LongOption
impl OptionTypeTrait for LongOption
Source§fn get_option_type(&self) -> &OptionType
fn get_option_type(&self) -> &OptionType
Get a reference to the OptionType parent struct
Source§fn get_option_type_mut(&mut self) -> &mut OptionType
fn get_option_type_mut(&mut self) -> &mut OptionType
Get a mutable reference to the OptionType parent struct
Source§impl VimObjectTrait for LongOption
impl VimObjectTrait for LongOption
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for LongOption
Auto Trait Implementations§
impl Freeze for LongOption
impl RefUnwindSafe for LongOption
impl Send for LongOption
impl Sync for LongOption
impl Unpin for LongOption
impl UnsafeUnpin for LongOption
impl UnwindSafe for LongOption
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