pub struct IoK8sApiCoreV1PhotonPersistentDiskVolumeSource {
pub fs_type: Option<String>,
pub pd_id: String,
}Expand description
Represents a Photon Controller persistent disk 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.
pd_id: StringID that identifies Photon Controller persistent disk
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl Clone for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
Source§fn clone(&self) -> IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
fn clone(&self) -> IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
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 IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl<'de> Deserialize<'de> for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
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<&IoK8sApiCoreV1PhotonPersistentDiskVolumeSource> for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl From<&IoK8sApiCoreV1PhotonPersistentDiskVolumeSource> for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
Source§fn from(value: &IoK8sApiCoreV1PhotonPersistentDiskVolumeSource) -> Self
fn from(value: &IoK8sApiCoreV1PhotonPersistentDiskVolumeSource) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl RefUnwindSafe for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl Send for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl Sync for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl Unpin for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
impl UnwindSafe for IoK8sApiCoreV1PhotonPersistentDiskVolumeSource
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