pub enum JSONSchemaPropsOrStringArray {
Schema(Box<JSONSchemaProps, Global>),
Strings(Vec<String, Global>),
}
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: JSONSchemaPropsOrStringArray)
fn merge_from(&mut self, other: JSONSchemaPropsOrStringArray)
Merge
other
into self
.source§impl<'de> Deserialize<'de> for JSONSchemaPropsOrStringArray
impl<'de> Deserialize<'de> for JSONSchemaPropsOrStringArray
source§fn deserialize<D>(
deserializer: D
) -> Result<JSONSchemaPropsOrStringArray, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<JSONSchemaPropsOrStringArray, <D as Deserializer<'de>>::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 ==
.source§impl Serialize for JSONSchemaPropsOrStringArray
impl Serialize for JSONSchemaPropsOrStringArray
source§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,
Serialize this value into the given Serde serializer. Read more