Struct k8s_openapi::api::core::v1::PhotonPersistentDiskVolumeSource
source · pub struct PhotonPersistentDiskVolumeSource {
pub fs_type: Option<String>,
pub pd_id: String,
}
Expand description
Represents a Photon Controller persistent disk resource.
Fields§
§fs_type: Option<String>
fsType is the 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: String
pdID is the ID that identifies Photon Controller persistent disk
Trait Implementations§
source§impl Clone for PhotonPersistentDiskVolumeSource
impl Clone for PhotonPersistentDiskVolumeSource
source§fn clone(&self) -> PhotonPersistentDiskVolumeSource
fn clone(&self) -> PhotonPersistentDiskVolumeSource
Returns a copy 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 DeepMerge for PhotonPersistentDiskVolumeSource
impl DeepMerge for PhotonPersistentDiskVolumeSource
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PhotonPersistentDiskVolumeSource
impl Default for PhotonPersistentDiskVolumeSource
source§fn default() -> PhotonPersistentDiskVolumeSource
fn default() -> PhotonPersistentDiskVolumeSource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PhotonPersistentDiskVolumeSource
impl<'de> Deserialize<'de> for PhotonPersistentDiskVolumeSource
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 PartialEq<PhotonPersistentDiskVolumeSource> for PhotonPersistentDiskVolumeSource
impl PartialEq<PhotonPersistentDiskVolumeSource> for PhotonPersistentDiskVolumeSource
source§fn eq(&self, other: &PhotonPersistentDiskVolumeSource) -> bool
fn eq(&self, other: &PhotonPersistentDiskVolumeSource) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.