[][src]Enum jsl::errors::JslError

pub enum JslError {
    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 JSL 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.

JSL 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 PartialEq<JslError> for JslError[src]

impl Clone for JslError[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for JslError[src]

impl Display for JslError[src]

impl Debug for JslError[src]

impl Hash for JslError[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Fail for JslError[src]

fn context<D>(self, context: D) -> Context<D> where
    D: Display + Send + Sync + 'static, 
[src]

Provides context for this failure. Read more

fn compat(self) -> Compat<Self>[src]

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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

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

impl<E> Fail for E where
    E: 'static + Error + Send + Sync
[src]

fn name(&self) -> Option<&str>[src]

Returns the "name" of the error. Read more

fn cause(&self) -> Option<&(dyn Fail + 'static)>[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

fn backtrace(&self) -> Option<&Backtrace>[src]

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

fn context<D>(self, context: D) -> Context<D> where
    D: Display + Send + Sync + 'static, 
[src]

Provides context for this failure. Read more

fn compat(self) -> Compat<Self>[src]

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more