Struct schemars::visit::ReplaceBoolSchemas
source · [−]pub struct ReplaceBoolSchemas {
pub skip_additional_properties: bool,
}
Expand description
This visitor will replace all boolean JSON Schemas with equivalent object schemas.
This is useful for dialects of JSON Schema (e.g. OpenAPI 3.0) that do not support booleans as schemas.
Fields
skip_additional_properties: bool
When set to true
, a schema’s additionalProperties
property will not be changed from a boolean.
Trait Implementations
sourceimpl Clone for ReplaceBoolSchemas
impl Clone for ReplaceBoolSchemas
sourcefn clone(&self) -> ReplaceBoolSchemas
fn clone(&self) -> ReplaceBoolSchemas
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ReplaceBoolSchemas
impl Debug for ReplaceBoolSchemas
sourceimpl Visitor for ReplaceBoolSchemas
impl Visitor for ReplaceBoolSchemas
sourcefn visit_schema(&mut self, schema: &mut Schema)
fn visit_schema(&mut self, schema: &mut Schema)
sourcefn visit_schema_object(&mut self, schema: &mut SchemaObject)
fn visit_schema_object(&mut self, schema: &mut SchemaObject)
Override this method to modify a SchemaObject
and (optionally) its subschemas. Read more
sourcefn visit_root_schema(&mut self, root: &mut RootSchema)
fn visit_root_schema(&mut self, root: &mut RootSchema)
Override this method to modify a RootSchema
and (optionally) its subschemas. Read more
Auto Trait Implementations
impl RefUnwindSafe for ReplaceBoolSchemas
impl Send for ReplaceBoolSchemas
impl Sync for ReplaceBoolSchemas
impl Unpin for ReplaceBoolSchemas
impl UnwindSafe for ReplaceBoolSchemas
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more