Enum k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::JSONSchemaPropsOrStringArray
source · pub enum JSONSchemaPropsOrStringArray {
Schema(Box<JSONSchemaProps>),
Strings(Vec<String>),
}
Expand description
JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array.
Variants§
Trait Implementations§
source§impl Clone for JSONSchemaPropsOrStringArray
impl Clone for JSONSchemaPropsOrStringArray
source§fn clone(&self) -> JSONSchemaPropsOrStringArray
fn clone(&self) -> JSONSchemaPropsOrStringArray
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 JSONSchemaPropsOrStringArray
impl Debug for JSONSchemaPropsOrStringArray
source§impl DeepMerge for JSONSchemaPropsOrStringArray
impl DeepMerge for JSONSchemaPropsOrStringArray
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 JSONSchemaPropsOrStringArray
impl<'de> Deserialize<'de> for JSONSchemaPropsOrStringArray
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<JSONSchemaPropsOrStringArray> for JSONSchemaPropsOrStringArray
impl PartialEq<JSONSchemaPropsOrStringArray> for JSONSchemaPropsOrStringArray
source§fn eq(&self, other: &JSONSchemaPropsOrStringArray) -> bool
fn eq(&self, other: &JSONSchemaPropsOrStringArray) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.