pub struct DynamicProperty {
pub name: String,
pub val: VimAny,
}Expand description
The DynamicProperty data object type represents a name-value pair.
§How to access
HostSystem::config.network?.opaque_switch?[*].dynamic_property?[*]HostSystem::config.network?.opaque_network?[*].dynamic_property?[*]HostSystem::config.network?.vnic?[*].spec.dynamic_property?[*]HostSystem::config.network?.console_vnic?[*].spec.dynamic_property?[*]HostSystem::config.network?.opaque_switch?[*].vtep?[*].spec.dynamic_property?[*]StoragePod::pod_storage_drs_entry.recommendation?[*].action?[*]→StoragePlacementAction.relocate_spec.device_change?[*].device⇒VirtualEthernetCardTrait.dynamic_property?[*]StoragePod::pod_storage_drs_entry.recommendation?[*].action?[*]→StorageMigrationAction.relocate_spec.device_change?[*].device⇒VirtualEthernetCardTrait.dynamic_property?[*]StoragePod::pod_storage_drs_entry.recommendation?[*].action?[*]→PlacementAction.relocate_spec?.device_change?[*].device⇒VirtualEthernetCardTrait.dynamic_property?[*]StoragePod::pod_storage_drs_entry.recommendation?[*].action?[*]→ClusterClusterInitialPlacementAction.config_spec?.device_change?[*].device⇒VirtualEthernetCardTrait.dynamic_property?[*]StoragePod::pod_storage_drs_entry.action_history?[*].action→StoragePlacementAction.relocate_spec.device_change?[*].device⇒VirtualEthernetCardTrait.dynamic_property?[*]
(10 of 100 paths)
Fields§
§name: StringPath to the property.
val: VimAnyValue of the property.
Trait Implementations§
Source§impl Debug for DynamicProperty
impl Debug for DynamicProperty
Source§impl Deserialize for DynamicProperty
impl Deserialize for DynamicProperty
Source§impl VimObjectTrait for DynamicProperty
impl VimObjectTrait for DynamicProperty
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for DynamicProperty
Auto Trait Implementations§
impl Freeze for DynamicProperty
impl !RefUnwindSafe for DynamicProperty
impl Send for DynamicProperty
impl Sync for DynamicProperty
impl Unpin for DynamicProperty
impl UnsafeUnpin for DynamicProperty
impl !UnwindSafe for DynamicProperty
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