pub enum EntityReferenceEntityTypeEnum {
Show 14 variants
Datacenter,
ResourcePool,
StoragePod,
Cluster,
Vm,
Datastore,
Host,
VmFile,
ScsiPath,
ScsiTarget,
ScsiVolume,
ScsiAdapter,
NasMount,
Other_(String),
}Expand description
Types of entities supported by the service.
Possible values:
datacenterresourcePoolstoragePodclustervmdatastorehostvmFilescsiPathscsiTargetscsiVolumescsiAdapternasMount
Variants§
Datacenter
ResourcePool
StoragePod
Cluster
Vm
Datastore
Host
VmFile
ScsiPath
ScsiTarget
ScsiVolume
ScsiAdapter
NasMount
Other_(String)
This variant handles values not known at compile time.
Trait Implementations§
Source§impl Clone for EntityReferenceEntityTypeEnum
impl Clone for EntityReferenceEntityTypeEnum
Source§fn clone(&self) -> EntityReferenceEntityTypeEnum
fn clone(&self) -> EntityReferenceEntityTypeEnum
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for EntityReferenceEntityTypeEnum
impl<'de> Deserialize<'de> for EntityReferenceEntityTypeEnum
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'_derivative_strum> From<&'_derivative_strum EntityReferenceEntityTypeEnum> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum EntityReferenceEntityTypeEnum> for &'static str
Source§fn from(x: &'_derivative_strum EntityReferenceEntityTypeEnum) -> &'static str
fn from(x: &'_derivative_strum EntityReferenceEntityTypeEnum) -> &'static str
Converts to this type from the input type.
Source§impl From<EntityReferenceEntityTypeEnum> for &'static str
impl From<EntityReferenceEntityTypeEnum> for &'static str
Source§fn from(x: EntityReferenceEntityTypeEnum) -> &'static str
fn from(x: EntityReferenceEntityTypeEnum) -> &'static str
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EntityReferenceEntityTypeEnum
impl RefUnwindSafe for EntityReferenceEntityTypeEnum
impl Send for EntityReferenceEntityTypeEnum
impl Sync for EntityReferenceEntityTypeEnum
impl Unpin for EntityReferenceEntityTypeEnum
impl UnwindSafe for EntityReferenceEntityTypeEnum
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