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 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 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)