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

pub struct PodCondition {
    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,
}

PodCondition contains details for the current condition of this pod.

Fields

Last time we probed the condition.

Last time the condition transitioned from one status to another.

Human-readable message indicating details about last transition.

Unique, one-word, CamelCase reason for the condition's last transition.

Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

Trait Implementations

impl Clone for PodCondition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PodCondition
[src]

Formats the value using the given formatter. Read more

impl Default for PodCondition
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PodCondition
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations