Struct k8s_openapi::v1_8::api::core::v1::PersistentVolumeClaimStatus[][src]

pub struct PersistentVolumeClaimStatus {
    pub access_modes: Option<Vec<String>>,
    pub capacity: Option<BTreeMap<String, Quantity>>,
    pub conditions: Option<Vec<PersistentVolumeClaimCondition>>,
    pub phase: Option<String>,
}

PersistentVolumeClaimStatus is the current status of a persistent volume claim.

Fields

AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1

Represents the actual resources of the underlying volume.

Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.

Phase represents the current phase of PersistentVolumeClaim.

Trait Implementations

impl Clone for PersistentVolumeClaimStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersistentVolumeClaimStatus
[src]

Formats the value using the given formatter. Read more

impl Default for PersistentVolumeClaimStatus
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PersistentVolumeClaimStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations