[][src]Struct jddf::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.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

impl Eq for Config[src]

impl Hash for Config[src]

impl PartialEq<Config> for Config[src]

impl StructuralEq for Config[src]

impl StructuralPartialEq for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

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