Struct k8s_openapi::api::core::v1::ContainerStateWaiting
source · pub struct ContainerStateWaiting {
pub message: Option<String>,
pub reason: Option<String>,
}
Expand description
ContainerStateWaiting is a waiting state of a container.
Fields§
§message: Option<String>
Message regarding why the container is not yet running.
reason: Option<String>
(brief) reason the container is not yet running.
Trait Implementations§
source§impl Clone for ContainerStateWaiting
impl Clone for ContainerStateWaiting
source§fn clone(&self) -> ContainerStateWaiting
fn clone(&self) -> ContainerStateWaiting
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ContainerStateWaiting
impl Debug for ContainerStateWaiting
source§impl DeepMerge for ContainerStateWaiting
impl DeepMerge for ContainerStateWaiting
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ContainerStateWaiting
impl Default for ContainerStateWaiting
source§fn default() -> ContainerStateWaiting
fn default() -> ContainerStateWaiting
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ContainerStateWaiting
impl<'de> Deserialize<'de> for ContainerStateWaiting
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ContainerStateWaiting> for ContainerStateWaiting
impl PartialEq<ContainerStateWaiting> for ContainerStateWaiting
source§fn eq(&self, other: &ContainerStateWaiting) -> bool
fn eq(&self, other: &ContainerStateWaiting) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.