pub struct IoK8sApiCoreV1VsphereVirtualDiskVolumeSource {
pub fs_type: Option<String>,
pub storage_policy_id: Option<String>,
pub storage_policy_name: Option<String>,
pub volume_path: String,
}Expand description
Represents a vSphere volume resource.
Fields§
§fs_type: Option<String>Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. “ext4”, “xfs”, “ntfs”. Implicitly inferred to be “ext4” if unspecified.
storage_policy_id: Option<String>Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.
storage_policy_name: Option<String>Storage Policy Based Management (SPBM) profile name.
volume_path: StringPath that identifies vSphere volume vmdk
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl Clone for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
Source§fn clone(&self) -> IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
fn clone(&self) -> IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
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 IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl<'de> Deserialize<'de> for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
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 From<&IoK8sApiCoreV1VsphereVirtualDiskVolumeSource> for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl From<&IoK8sApiCoreV1VsphereVirtualDiskVolumeSource> for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
Source§fn from(value: &IoK8sApiCoreV1VsphereVirtualDiskVolumeSource) -> Self
fn from(value: &IoK8sApiCoreV1VsphereVirtualDiskVolumeSource) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl RefUnwindSafe for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl Send for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl Sync for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl Unpin for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
impl UnwindSafe for IoK8sApiCoreV1VsphereVirtualDiskVolumeSource
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