pub enum JSONSchemaPropsOrBool {
Schema(Box<JSONSchemaProps, Global>),
Bool(bool),
}
Expand description
JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.
Variants§
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: JSONSchemaPropsOrBool)
fn merge_from(&mut self, other: JSONSchemaPropsOrBool)
Merge
other
into self
.source§impl<'de> Deserialize<'de> for JSONSchemaPropsOrBool
impl<'de> Deserialize<'de> for JSONSchemaPropsOrBool
source§fn deserialize<D>(
deserializer: D
) -> Result<JSONSchemaPropsOrBool, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<JSONSchemaPropsOrBool, <D as Deserializer<'de>>::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 ==
.source§impl Serialize for JSONSchemaPropsOrBool
impl Serialize for JSONSchemaPropsOrBool
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