Struct k8s_openapi::v1_7::kubernetes::pkg::api::v1::PortworxVolumeSource[][src]

pub struct PortworxVolumeSource {
    pub fs_type: Option<String>,
    pub read_only: Option<bool>,
    pub volume_id: String,
}

PortworxVolumeSource represents a Portworx volume resource.

Fields

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.

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

VolumeID uniquely identifies a Portworx volume

Trait Implementations

impl Clone for PortworxVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PortworxVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for PortworxVolumeSource
[src]

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

impl PartialEq for PortworxVolumeSource
[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 PortworxVolumeSource
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PortworxVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations