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

pub struct PersistentVolumeStatus {
    pub message: Option<String>,
    pub phase: Option<String>,
    pub reason: Option<String>,
}

PersistentVolumeStatus is the current status of a persistent volume.

Fields

A human-readable message indicating details about why the volume is in this state.

Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase

Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.

Trait Implementations

impl Clone for PersistentVolumeStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersistentVolumeStatus
[src]

Formats the value using the given formatter. Read more

impl Default for PersistentVolumeStatus
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PersistentVolumeStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations