[−][src]Struct k8s_openapi::api::core::v1::ContainerStatus
ContainerStatus contains details for the current status of this container.
Fields
container_id: Option<String>
Container's ID in the format 'docker://<container_id>'.
image: String
The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images
image_id: String
ImageID of the container's image.
last_state: Option<ContainerState>
Details about the container's last termination condition.
name: String
This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
ready: bool
Specifies whether the container has passed its readiness probe.
restart_count: i32
The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
started: Option<bool>
Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.
state: Option<ContainerState>
Details about the container's current condition.
Trait Implementations
impl Clone for ContainerStatus
[src]
pub fn clone(&self) -> ContainerStatus
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ContainerStatus
[src]
impl Default for ContainerStatus
[src]
pub fn default() -> ContainerStatus
[src]
impl<'de> Deserialize<'de> for ContainerStatus
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<ContainerStatus> for ContainerStatus
[src]
pub fn eq(&self, other: &ContainerStatus) -> bool
[src]
pub fn ne(&self, other: &ContainerStatus) -> bool
[src]
impl Serialize for ContainerStatus
[src]
impl StructuralPartialEq for ContainerStatus
[src]
Auto Trait Implementations
impl RefUnwindSafe for ContainerStatus
[src]
impl Send for ContainerStatus
[src]
impl Sync for ContainerStatus
[src]
impl Unpin for ContainerStatus
[src]
impl UnwindSafe for ContainerStatus
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,