[][src]Enum jddf::errors::JddfError

pub enum JddfError {
    InvalidForm,
    AmbiguousProperty {
        property: String,
    },
    NoSuchDefinition {
        definition: String,
    },
    MaxDepthExceeded,
}

An enum of possible errors that can emerge from this crate.

Variants

InvalidForm

A schema-like object did not take on a valid form.

Only certain combinations of keywords make for valid JDDF schemas. When a schema uses an invalid combination of keywords, it is said to not take on one of the valid forms. Converting a SerdeSchema with an invalid combination of keywords into a Schema will result in this error.

AmbiguousProperty

A schema-like object specified a keyword in an ambiguous manner.

JDDF prohibits schemas from specifying the same property twice in the same schema. This error arises when a SerdeSchema's properties, optionalProperties, or discriminator.propertyName share a property in common, and one attempts to convert this into a Schema.

Fields of AmbiguousProperty

property: String
NoSuchDefinition

A schema refers to a definition which does not exist.

Schemas may refer to one another using the ref keyword, which may refer to a definition in the root schema. If a schema refers to a definition which does not exist, this error is returned.

Fields of NoSuchDefinition

definition: String
MaxDepthExceeded

The maximum depth during evaluating was exceeded.

This likely means that your configured max_depth is too small, or that there is a infinite cyclical definition in your schemas.

Trait Implementations

impl Clone for JddfError[src]

impl Debug for JddfError[src]

impl Display for JddfError[src]

impl Eq for JddfError[src]

impl Fail for JddfError[src]

impl Hash for JddfError[src]

impl PartialEq<JddfError> for JddfError[src]

impl StructuralEq for JddfError[src]

impl StructuralPartialEq for JddfError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsFail for T where
    T: Fail
[src]

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

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

impl<E> Fail for E where
    E: 'static + Error + Send + Sync
[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.