Struct k8s_openapi::v1_10::api::core::v1::ContainerStateTerminated[][src]

pub struct ContainerStateTerminated {
    pub container_id: Option<String>,
    pub exit_code: i32,
    pub finished_at: Option<Time>,
    pub message: Option<String>,
    pub reason: Option<String>,
    pub signal: Option<i32>,
    pub started_at: Option<Time>,
}

ContainerStateTerminated is a terminated state of a container.

Fields

Container's ID in the format 'docker://<container_id>'

Exit status from the last termination of the container

Time at which the container last terminated

Message regarding the last termination of the container

(brief) reason from the last termination of the container

Signal from the last termination of the container

Time at which previous execution of the container started

Trait Implementations

impl Clone for ContainerStateTerminated
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ContainerStateTerminated
[src]

Formats the value using the given formatter. Read more

impl Default for ContainerStateTerminated
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ContainerStateTerminated
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations