pub enum GatewayStatusConditionsStatus {
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 GatewayStatusConditionsStatus
impl Clone for GatewayStatusConditionsStatus
Source§fn clone(&self) -> GatewayStatusConditionsStatus
fn clone(&self) -> GatewayStatusConditionsStatus
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 GatewayStatusConditionsStatus
impl<'de> Deserialize<'de> for GatewayStatusConditionsStatus
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 GatewayStatusConditionsStatus
impl PartialEq for GatewayStatusConditionsStatus
Source§fn eq(&self, other: &GatewayStatusConditionsStatus) -> bool
fn eq(&self, other: &GatewayStatusConditionsStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GatewayStatusConditionsStatus
Auto Trait Implementations§
impl Freeze for GatewayStatusConditionsStatus
impl RefUnwindSafe for GatewayStatusConditionsStatus
impl Send for GatewayStatusConditionsStatus
impl Sync for GatewayStatusConditionsStatus
impl Unpin for GatewayStatusConditionsStatus
impl UnwindSafe for GatewayStatusConditionsStatus
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