Struct k8s_openapi::v1_11::api::core::v1::PhotonPersistentDiskVolumeSource[][src]

pub struct PhotonPersistentDiskVolumeSource {
    pub fs_type: Option<String>,
    pub pd_id: String,
}

Represents a Photon Controller persistent disk resource.

Fields

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.

ID that identifies Photon Controller persistent disk

Trait Implementations

impl Clone for PhotonPersistentDiskVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PhotonPersistentDiskVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for PhotonPersistentDiskVolumeSource
[src]

Returns the "default value" for a type. Read more

impl PartialEq for PhotonPersistentDiskVolumeSource
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for PhotonPersistentDiskVolumeSource
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PhotonPersistentDiskVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations