pub enum Schema {
    Bool(bool),
    Object(SchemaObject),
}Expand description
A JSON Schema.
Variants
Bool(bool)
A trivial boolean JSON Schema.
The schema true matches everything (always passes validation), whereas the schema false
matches nothing (always fails validation).
Object(SchemaObject)
A JSON Schema object.
Implementations
sourceimpl Schema
 
impl Schema
sourcepub fn new_ref(reference: String) -> Schema
 
pub fn new_ref(reference: String) -> Schema
Creates a new $ref schema.
The given reference string should be a URI reference. This will usually be a JSON Pointer in URI Fragment representation.
sourcepub fn is_ref(&self) -> bool
 
pub fn is_ref(&self) -> bool
Returns true if self is a $ref schema.
If self is a SchemaObject with Some reference set, this returns true.
Otherwise, returns false.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Schema
 
impl<'de> Deserialize<'de> for Schema
sourcefn deserialize<__D>(
    __deserializer: __D
) -> Result<Schema, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<Schema, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<Schema> for SchemaObject
 
impl From<Schema> for SchemaObject
sourcefn from(schema: Schema) -> SchemaObject
 
fn from(schema: Schema) -> SchemaObject
Converts to this type from the input type.
sourceimpl From<SchemaObject> for Schema
 
impl From<SchemaObject> for Schema
sourcefn from(o: SchemaObject) -> Schema
 
fn from(o: SchemaObject) -> Schema
Converts to this type from the input type.
sourceimpl Serialize for Schema
 
impl Serialize for Schema
sourcefn 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
impl StructuralPartialEq for Schema
Auto Trait Implementations
impl RefUnwindSafe for Schema
impl Send for Schema
impl Sync for Schema
impl Unpin for Schema
impl UnwindSafe for Schema
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
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.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more