Enum k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::JSONSchemaPropsOrBool
source · pub enum JSONSchemaPropsOrBool {
Schema(Box<JSONSchemaProps>),
Bool(bool),
}
Expand description
JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.
Variants§
Schema(Box<JSONSchemaProps>)
Bool(bool)
Trait Implementations§
source§impl Clone for JSONSchemaPropsOrBool
impl Clone for JSONSchemaPropsOrBool
source§fn clone(&self) -> JSONSchemaPropsOrBool
fn clone(&self) -> JSONSchemaPropsOrBool
Returns a copy 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 Debug for JSONSchemaPropsOrBool
impl Debug for JSONSchemaPropsOrBool
source§impl DeepMerge for JSONSchemaPropsOrBool
impl DeepMerge for JSONSchemaPropsOrBool
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl<'de> Deserialize<'de> for JSONSchemaPropsOrBool
impl<'de> Deserialize<'de> for JSONSchemaPropsOrBool
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<JSONSchemaPropsOrBool> for JSONSchemaPropsOrBool
impl PartialEq<JSONSchemaPropsOrBool> for JSONSchemaPropsOrBool
source§fn eq(&self, other: &JSONSchemaPropsOrBool) -> bool
fn eq(&self, other: &JSONSchemaPropsOrBool) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.