Struct k8s_openapi::api::core::v1::PodCondition
source · pub struct PodCondition {
pub last_probe_time: Option<Time>,
pub last_transition_time: Option<Time>,
pub message: Option<String>,
pub reason: Option<String>,
pub status: String,
pub type_: String,
}
Expand description
PodCondition contains details for the current condition of this pod.
Fields§
§last_probe_time: Option<Time>
Last time we probed the condition.
last_transition_time: Option<Time>
Last time the condition transitioned from one status to another.
message: Option<String>
Human-readable message indicating details about last transition.
reason: Option<String>
Unique, one-word, CamelCase reason for the condition’s last transition.
status: String
Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
type_: String
Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
Trait Implementations§
source§impl Clone for PodCondition
impl Clone for PodCondition
source§fn clone(&self) -> PodCondition
fn clone(&self) -> PodCondition
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 PodCondition
impl Debug for PodCondition
source§impl DeepMerge for PodCondition
impl DeepMerge for PodCondition
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PodCondition
impl Default for PodCondition
source§fn default() -> PodCondition
fn default() -> PodCondition
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PodCondition
impl<'de> Deserialize<'de> for PodCondition
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 JsonSchema for PodCondition
impl JsonSchema for PodCondition
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(__gen: &mut SchemaGenerator) -> Schema
fn json_schema(__gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl PartialEq for PodCondition
impl PartialEq for PodCondition
source§impl Serialize for PodCondition
impl Serialize for PodCondition
impl StructuralPartialEq for PodCondition
Auto Trait Implementations§
impl Freeze for PodCondition
impl RefUnwindSafe for PodCondition
impl Send for PodCondition
impl Sync for PodCondition
impl Unpin for PodCondition
impl UnwindSafe for PodCondition
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)