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, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag.
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 for EndpointConditions
impl PartialEq for EndpointConditions
source§impl Serialize for EndpointConditions
impl Serialize for EndpointConditions
impl StructuralPartialEq for EndpointConditions
Auto Trait Implementations§
impl Freeze for EndpointConditions
impl RefUnwindSafe for EndpointConditions
impl Send for EndpointConditions
impl Sync for EndpointConditions
impl Unpin for EndpointConditions
impl UnwindSafe for EndpointConditions
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)