Struct k8s_openapi::api::discovery::v1::EndpointConditions
source · pub struct EndpointConditions {
pub ready: Option<bool>,
pub serving: Option<bool>,
pub terminating: Option<bool>,
}
Expand description
EndpointConditions represents the current condition of an endpoint.
Fields§
§ready: Option<bool>
ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be “true” for terminating endpoints.
serving: Option<bool>
serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition.
terminating: Option<bool>
terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating.
Trait Implementations§
source§impl Clone for EndpointConditions
impl Clone for EndpointConditions
source§fn clone(&self) -> EndpointConditions
fn clone(&self) -> EndpointConditions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EndpointConditions
impl Debug for EndpointConditions
source§impl DeepMerge for EndpointConditions
impl DeepMerge for EndpointConditions
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for EndpointConditions
impl Default for EndpointConditions
source§fn default() -> EndpointConditions
fn default() -> EndpointConditions
source§impl<'de> Deserialize<'de> for EndpointConditions
impl<'de> Deserialize<'de> for EndpointConditions
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>,
source§impl PartialEq<EndpointConditions> for EndpointConditions
impl PartialEq<EndpointConditions> for EndpointConditions
source§fn eq(&self, other: &EndpointConditions) -> bool
fn eq(&self, other: &EndpointConditions) -> bool
self
and other
values to be equal, and is used
by ==
.