Struct k8s_openapi::api::core::v1::PersistentVolumeStatus
source · [−]pub struct PersistentVolumeStatus {
pub message: Option<String>,
pub phase: Option<String>,
pub reason: Option<String>,
}
Expand description
PersistentVolumeStatus is the current status of a persistent volume.
Fields
message: Option<String>
message is 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
sourceimpl Clone for PersistentVolumeStatus
impl Clone for PersistentVolumeStatus
sourcefn clone(&self) -> PersistentVolumeStatus
fn clone(&self) -> PersistentVolumeStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PersistentVolumeStatus
impl Debug for PersistentVolumeStatus
sourceimpl Default for PersistentVolumeStatus
impl Default for PersistentVolumeStatus
sourcefn default() -> PersistentVolumeStatus
fn default() -> PersistentVolumeStatus
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PersistentVolumeStatus
impl<'de> Deserialize<'de> for PersistentVolumeStatus
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<PersistentVolumeStatus> for PersistentVolumeStatus
impl PartialEq<PersistentVolumeStatus> for PersistentVolumeStatus
sourcefn eq(&self, other: &PersistentVolumeStatus) -> bool
fn eq(&self, other: &PersistentVolumeStatus) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PersistentVolumeStatus) -> bool
fn ne(&self, other: &PersistentVolumeStatus) -> bool
This method tests for !=
.
sourceimpl Serialize for PersistentVolumeStatus
impl Serialize for PersistentVolumeStatus
impl StructuralPartialEq for PersistentVolumeStatus
Auto Trait Implementations
impl RefUnwindSafe for PersistentVolumeStatus
impl Send for PersistentVolumeStatus
impl Sync for PersistentVolumeStatus
impl Unpin for PersistentVolumeStatus
impl UnwindSafe for PersistentVolumeStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more