pub enum TLSRouteStatusParentsConditionsStatus {
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
True
False
Unknown
Trait Implementations
sourceimpl Clone for TLSRouteStatusParentsConditionsStatus
impl Clone for TLSRouteStatusParentsConditionsStatus
sourcefn clone(&self) -> TLSRouteStatusParentsConditionsStatus
fn clone(&self) -> TLSRouteStatusParentsConditionsStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'de> Deserialize<'de> for TLSRouteStatusParentsConditionsStatus
impl<'de> Deserialize<'de> for TLSRouteStatusParentsConditionsStatus
sourcefn 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
sourceimpl JsonSchema for TLSRouteStatusParentsConditionsStatus
impl JsonSchema for TLSRouteStatusParentsConditionsStatus
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations
impl RefUnwindSafe for TLSRouteStatusParentsConditionsStatus
impl Send for TLSRouteStatusParentsConditionsStatus
impl Sync for TLSRouteStatusParentsConditionsStatus
impl Unpin for TLSRouteStatusParentsConditionsStatus
impl UnwindSafe for TLSRouteStatusParentsConditionsStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more