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

pub struct ContainerStateWaiting {
    pub message: Option<String>,
    pub reason: Option<String>,
}

ContainerStateWaiting is a waiting state of a container.

Fields

Message regarding why the container is not yet running.

(brief) reason the container is not yet running.

Trait Implementations

impl Clone for ContainerStateWaiting
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ContainerStateWaiting
[src]

Formats the value using the given formatter. Read more

impl Default for ContainerStateWaiting
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ContainerStateWaiting
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations