pub enum JsonSchemaError {
MissingTitle,
MissingMetadata,
MissingNodes,
MissingNodeType,
}Expand description
Result of validating the deterministic document JSON shape.
Variants§
MissingTitle
Top-level title field is missing.
MissingMetadata
Top-level metadata object is missing.
MissingNodes
Top-level nodes array is missing.
MissingNodeType
A node object is missing its type discriminator.
Trait Implementations§
Source§impl Clone for JsonSchemaError
impl Clone for JsonSchemaError
Source§fn clone(&self) -> JsonSchemaError
fn clone(&self) -> JsonSchemaError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JsonSchemaError
impl Debug for JsonSchemaError
Source§impl Display for JsonSchemaError
impl Display for JsonSchemaError
Source§impl Error for JsonSchemaError
impl Error for JsonSchemaError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for JsonSchemaError
impl PartialEq for JsonSchemaError
Source§fn eq(&self, other: &JsonSchemaError) -> bool
fn eq(&self, other: &JsonSchemaError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for JsonSchemaError
impl StructuralPartialEq for JsonSchemaError
Auto Trait Implementations§
impl Freeze for JsonSchemaError
impl RefUnwindSafe for JsonSchemaError
impl Send for JsonSchemaError
impl Sync for JsonSchemaError
impl Unpin for JsonSchemaError
impl UnsafeUnpin for JsonSchemaError
impl UnwindSafe for JsonSchemaError
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