Struct k8s_openapi::api::core::v1::PersistentVolumeClaimCondition
source · 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,
}
Expand description
PersistentVolumeClaimCondition contails details about state of pvc
Fields§
§last_probe_time: Option<Time>
lastProbeTime is the time we probed the condition.
last_transition_time: Option<Time>
lastTransitionTime is the time the condition transitioned from one status to another.
message: Option<String>
message is the human-readable message indicating details about last transition.
reason: Option<String>
reason is a 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.
status: String
§type_: String
Trait Implementations§
source§impl Clone for PersistentVolumeClaimCondition
impl Clone for PersistentVolumeClaimCondition
source§fn clone(&self) -> PersistentVolumeClaimCondition
fn clone(&self) -> PersistentVolumeClaimCondition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl DeepMerge for PersistentVolumeClaimCondition
impl DeepMerge for PersistentVolumeClaimCondition
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PersistentVolumeClaimCondition
impl Default for PersistentVolumeClaimCondition
source§fn default() -> PersistentVolumeClaimCondition
fn default() -> PersistentVolumeClaimCondition
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PersistentVolumeClaimCondition
impl<'de> Deserialize<'de> for PersistentVolumeClaimCondition
source§fn 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
source§impl PartialEq<PersistentVolumeClaimCondition> for PersistentVolumeClaimCondition
impl PartialEq<PersistentVolumeClaimCondition> for PersistentVolumeClaimCondition
source§fn eq(&self, other: &PersistentVolumeClaimCondition) -> bool
fn eq(&self, other: &PersistentVolumeClaimCondition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.