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

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

message: Option<String>

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

phase: Option<String>

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: Option<String>

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]

impl Debug for PersistentVolumeStatus[src]

impl Default for PersistentVolumeStatus[src]

impl<'de> Deserialize<'de> for PersistentVolumeStatus[src]

impl PartialEq<PersistentVolumeStatus> for PersistentVolumeStatus[src]

impl Serialize for PersistentVolumeStatus[src]

impl StructuralPartialEq for PersistentVolumeStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.