Struct k8s_openapi::v1_8::api::core::v1::ComponentCondition[][src]

pub struct ComponentCondition {
    pub error: Option<String>,
    pub message: Option<String>,
    pub status: String,
    pub type_: String,
}

Information about the condition of a component.

Fields

Condition error code for a component. For example, a health check error code.

Message about the condition for a component. For example, information about a health check.

Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".

Type of condition for a component. Valid value: "Healthy"

Trait Implementations

impl Clone for ComponentCondition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ComponentCondition
[src]

Formats the value using the given formatter. Read more

impl Default for ComponentCondition
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ComponentCondition
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations