Struct k8s_openapi::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,
}
Expand description
PersistentVolumeClaimCondition contails details about state of pvc
Fields
last_probe_time: Option<Time>
Last time we probed the condition.
last_transition_time: Option<Time>
Last time the condition transitioned from one status to another.
message: Option<String>
Human-readable message indicating details about last transition.
reason: Option<String>
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
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for PersistentVolumeClaimCondition
impl Sync for PersistentVolumeClaimCondition
impl Unpin for PersistentVolumeClaimCondition
impl UnwindSafe for PersistentVolumeClaimCondition
Blanket Implementations
Mutably borrows from an owned value. Read more