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

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_id: Option<String>

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

exit_code: i32

Exit status from the last termination of the container

finished_at: Option<Time>

Time at which the container last terminated

message: Option<String>

Message regarding the last termination of the container

reason: Option<String>

(brief) reason from the last termination of the container

signal: Option<i32>

Signal from the last termination of the container

started_at: Option<Time>

Time at which previous execution of the container started

Trait Implementations

impl Clone for ContainerStateTerminated[src]

impl Debug for ContainerStateTerminated[src]

impl Default for ContainerStateTerminated[src]

impl<'de> Deserialize<'de> for ContainerStateTerminated[src]

impl PartialEq<ContainerStateTerminated> for ContainerStateTerminated[src]

impl Serialize for ContainerStateTerminated[src]

impl StructuralPartialEq for ContainerStateTerminated[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.