pub enum GatewayStatusListenersConditionsStatus {
True,
False,
Unknown,
}Expand description
Condition contains details for one aspect of the current state of this API Resource. — This struct is intended for direct use as an array at the field path .status.conditions. For example,
type FooStatus struct{ // Represents the observations of a foo’s current state. // Known .status.conditions.type are: “Available”, “Progressing”, and “Degraded” // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"
// other fields }
Variants§
Trait Implementations§
Source§impl Clone for GatewayStatusListenersConditionsStatus
impl Clone for GatewayStatusListenersConditionsStatus
Source§fn clone(&self) -> GatewayStatusListenersConditionsStatus
fn clone(&self) -> GatewayStatusListenersConditionsStatus
Returns a duplicate 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<'de> Deserialize<'de> for GatewayStatusListenersConditionsStatus
impl<'de> Deserialize<'de> for GatewayStatusListenersConditionsStatus
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 for GatewayStatusListenersConditionsStatus
impl PartialEq for GatewayStatusListenersConditionsStatus
Source§fn eq(&self, other: &GatewayStatusListenersConditionsStatus) -> bool
fn eq(&self, other: &GatewayStatusListenersConditionsStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GatewayStatusListenersConditionsStatus
Auto Trait Implementations§
impl Freeze for GatewayStatusListenersConditionsStatus
impl RefUnwindSafe for GatewayStatusListenersConditionsStatus
impl Send for GatewayStatusListenersConditionsStatus
impl Sync for GatewayStatusListenersConditionsStatus
impl Unpin for GatewayStatusListenersConditionsStatus
impl UnwindSafe for GatewayStatusListenersConditionsStatus
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