[][src]Struct jsl::validator::Config

pub struct Config { /* fields omitted */ }

Configuration for how validation should proceed.

Methods

impl Config[src]

pub fn new() -> Self[src]

Create a new, default Config.

pub fn max_errors(&mut self, max_errors: usize) -> &mut Self[src]

Sets the maximum number of errors to produce before stopping validation. 0, the default value, indicates that all errors should be produced.

If your use-case doesn't care about errors, and you just want to abort on the first error, you should set this value to 1.

pub fn max_depth(&mut self, max_depth: usize) -> &mut Self[src]

Sets the maximum call depth before aborting evaluation. The default value is to follow 32 cross-references before aborting.

When evaluation is aborted because of this maximum depth, validation fails. No validation errors are returned.

This functionality exists to support detecting infinite loops in schemas, for example in circularly-defined schemas.

pub fn strict_instance_semantics(
    &mut self,
    strict_instance_semantics: bool
) -> &mut Self
[src]

Sets whether to use strict instance semantics. The default is to not use strict instance semantics.

Essentially, strict instance semantics determines whether it's ok for an instance (input) to have properties not mentioned in a schema. When using strict instance semantics, these undeclared properties will be considered erroneuous. In non-strict instance semantics, these properties are simply ignored.

Trait Implementations

impl PartialEq<Config> for Config[src]

impl Clone for Config[src]

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

Performs copy-assignment from source. Read more

impl Default for Config[src]

impl Eq for Config[src]

impl Debug for Config[src]

impl Hash for Config[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

Auto Trait Implementations

impl Unpin for Config

impl Sync for Config

impl Send for Config

impl RefUnwindSafe for Config

impl UnwindSafe for Config

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, 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]