pub struct ObjectSchema {
pub properties: Option<IndexMap<String, JsonSchema>>,
pub required: Option<Vec<String>>,
pub additional_properties: Option<AdditionalProperties>,
pub metadata: SchemaMetadata,
}Expand description
Object type schema (with explicit type: “object”)
Fields§
§properties: Option<IndexMap<String, JsonSchema>>§required: Option<Vec<String>>§additional_properties: Option<AdditionalProperties>§metadata: SchemaMetadataTrait Implementations§
Source§impl Clone for ObjectSchema
impl Clone for ObjectSchema
Source§fn clone(&self) -> ObjectSchema
fn clone(&self) -> ObjectSchema
Returns a duplicate 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 ObjectSchema
impl Debug for ObjectSchema
Source§impl Default for ObjectSchema
impl Default for ObjectSchema
Source§fn default() -> ObjectSchema
fn default() -> ObjectSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ObjectSchema
impl<'de> Deserialize<'de> for ObjectSchema
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 for ObjectSchema
impl PartialEq for ObjectSchema
Source§impl Serialize for ObjectSchema
impl Serialize for ObjectSchema
impl StructuralPartialEq for ObjectSchema
Auto Trait Implementations§
impl Freeze for ObjectSchema
impl RefUnwindSafe for ObjectSchema
impl Send for ObjectSchema
impl Sync for ObjectSchema
impl Unpin for ObjectSchema
impl UnwindSafe for ObjectSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more