[][src]Enum verify::schemars::errors::InvalidSchema

pub enum InvalidSchema {
    MissingDefinition(String),
    InvalidPattern {
        pattern: String,
        error: Error,
    },
    ExternalReference(String),
}
This is supported on feature="schemars" only.

All errors related to the schema being invalid.

A schema must be valid in order to validate anything with it. This error occurs if that is not the case.

It is also returned by calling verify on a schema.

Variants

MissingDefinition(String)
This is supported on feature="schemars" only.

Indicates a missing local definition.

InvalidPattern
This is supported on feature="schemars" only.

Indicates an invalid regex pattern in the schema.

Fields of InvalidPattern

pattern: String
This is supported on feature="schemars" only.
error: Error
This is supported on feature="schemars" only.
ExternalReference(String)
This is supported on feature="schemars" only.

Indicates an unresolved external reference in the schema.

Trait Implementations

impl Clone for InvalidSchema[src]

impl Debug for InvalidSchema[src]

impl Display for InvalidSchema[src]

impl PartialEq<InvalidSchema> for InvalidSchema[src]

impl StructuralPartialEq for InvalidSchema[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.