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