Struct k8s_openapi::v1_7::kubernetes::pkg::api::v1::PortworxVolumeSource
source · pub struct PortworxVolumeSource {
pub fs_type: Option<String>,
pub read_only: Option<bool>,
pub volume_id: String,
}
Expand description
PortworxVolumeSource represents a Portworx volume resource.
Fields§
§fs_type: Option<String>
FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. “ext4”, “xfs”. Implicitly inferred to be “ext4” if unspecified.
read_only: Option<bool>
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
volume_id: String
VolumeID uniquely identifies a Portworx volume
Trait Implementations§
source§impl Clone for PortworxVolumeSource
impl Clone for PortworxVolumeSource
source§fn clone(&self) -> PortworxVolumeSource
fn clone(&self) -> PortworxVolumeSource
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 Debug for PortworxVolumeSource
impl Debug for PortworxVolumeSource
source§impl Default for PortworxVolumeSource
impl Default for PortworxVolumeSource
source§fn default() -> PortworxVolumeSource
fn default() -> PortworxVolumeSource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PortworxVolumeSource
impl<'de> Deserialize<'de> for PortworxVolumeSource
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