pub struct DvsContactInfo {
pub name: Option<String>,
pub contact: Option<String>,
}Expand description
Contact information of a human operator.
§How to access
VmwareDistributedVirtualSwitch::config.contactVmwareDistributedVirtualSwitch::summary.contact?DistributedVirtualSwitch::config.contactDistributedVirtualSwitch::summary.contact?VmwareDistributedVirtualSwitch::reconfigure_dvs_task(spec).contact?Folder::create_dvs_task(spec).config_spec.contact?StoragePod::create_dvs_task(spec).config_spec.contact?DistributedVirtualSwitch::reconfigure_dvs_task(spec).contact?VsanVdsSystem::vsan_vds_get_migration_plan().vds_spec.config_spec.contact?VsanVdsSystem::vsan_vds_migrate_vss(migration_plan).vds_spec.config_spec.contact?
Fields§
§name: Option<String>The name of the person who is responsible for the switch.
contact: Option<String>The contact information for the person.
Trait Implementations§
Source§impl Debug for DvsContactInfo
impl Debug for DvsContactInfo
Source§impl Deserialize for DvsContactInfo
impl Deserialize for DvsContactInfo
Source§impl VimObjectTrait for DvsContactInfo
impl VimObjectTrait for DvsContactInfo
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for DvsContactInfo
Auto Trait Implementations§
impl Freeze for DvsContactInfo
impl RefUnwindSafe for DvsContactInfo
impl Send for DvsContactInfo
impl Sync for DvsContactInfo
impl Unpin for DvsContactInfo
impl UnsafeUnpin for DvsContactInfo
impl UnwindSafe for DvsContactInfo
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