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

pub struct PersistentVolumeClaimCondition {
    pub last_probe_time: Option<Time>,
    pub last_transition_time: Option<Time>,
    pub message: Option<String>,
    pub reason: Option<String>,
    pub status: String,
    pub type_: String,
}

PersistentVolumeClaimCondition contails details about state of pvc

Fields

Last time we probed the condition.

Last time the condition transitioned from one status to another.

Human-readable message indicating details about last transition.

Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized.

Trait Implementations

impl Clone for PersistentVolumeClaimCondition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersistentVolumeClaimCondition
[src]

Formats the value using the given formatter. Read more

impl Default for PersistentVolumeClaimCondition
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PersistentVolumeClaimCondition
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations