pub struct DefaultSchemaRaw {Show 13 fields
    pub reference: Option<String>,
    pub title: Option<String>,
    pub description: Option<String>,
    pub data_type: Option<DataType>,
    pub format: Option<DataTypeFormat>,
    pub maximum: Option<f32>,
    pub minimum: Option<f32>,
    pub example: Option<Value>,
    pub properties: BTreeMap<String, Box<DefaultSchemaRaw>>,
    pub items: Option<Box<DefaultSchemaRaw>>,
    pub enum_: Vec<Value>,
    pub extra_props: Option<Either<bool, Box<DefaultSchemaRaw>>>,
    pub required: BTreeSet<String>,
    /* private fields */
}Expand description
Raw version of schema.
NOTE: This doesn’t have smart pointers to reuse definitions
throughout the spec. Instead, it contains the actual schema with
unresolvable $ref fields.
Default schema if your schema doesn’t have any custom fields.
https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#schemaObject
Fields§
§reference: Option<String>§title: Option<String>§description: Option<String>§data_type: Option<DataType>§format: Option<DataTypeFormat>§maximum: Option<f32>§minimum: Option<f32>§example: Option<Value>§properties: BTreeMap<String, Box<DefaultSchemaRaw>>§items: Option<Box<DefaultSchemaRaw>>§enum_: Vec<Value>§extra_props: Option<Either<bool, Box<DefaultSchemaRaw>>>§required: BTreeSet<String>Implementations§
Source§impl DefaultSchemaRaw
 
impl DefaultSchemaRaw
Sourcepub fn remove_refs(&mut self)
 
pub fn remove_refs(&mut self)
Recursively removes all $ref values in this schema.
Sourcepub fn retain_ref(&mut self)
 
pub fn retain_ref(&mut self)
Recursively removes all properties other than $ref value
if the $ref is non-null.
Trait Implementations§
Source§impl Clone for DefaultSchemaRaw
 
impl Clone for DefaultSchemaRaw
Source§fn clone(&self) -> DefaultSchemaRaw
 
fn clone(&self) -> DefaultSchemaRaw
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 DefaultSchemaRaw
 
impl Debug for DefaultSchemaRaw
Source§impl Default for DefaultSchemaRaw
 
impl Default for DefaultSchemaRaw
Source§impl<'de> Deserialize<'de> for DefaultSchemaRaw
 
impl<'de> Deserialize<'de> for DefaultSchemaRaw
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 From<DefaultSchemaRaw> for ReferenceOr<Box<Schema>>
 
impl From<DefaultSchemaRaw> for ReferenceOr<Box<Schema>>
Source§fn from(v2: DefaultSchemaRaw) -> Self
 
fn from(v2: DefaultSchemaRaw) -> Self
Converts to this type from the input type.
Source§impl From<DefaultSchemaRaw> for ReferenceOr<Schema>
 
impl From<DefaultSchemaRaw> for ReferenceOr<Schema>
Source§fn from(v2: DefaultSchemaRaw) -> Self
 
fn from(v2: DefaultSchemaRaw) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DefaultSchemaRaw
impl RefUnwindSafe for DefaultSchemaRaw
impl Send for DefaultSchemaRaw
impl Sync for DefaultSchemaRaw
impl Unpin for DefaultSchemaRaw
impl UnwindSafe for DefaultSchemaRaw
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