[][src]Struct jsl::validator::Validator

pub struct Validator { /* fields omitted */ }

Validates instances against schemas.

Methods

impl Validator[src]

pub fn new() -> Self[src]

Constructs a new validator using the default configuration.

pub fn new_with_config(config: Config) -> Self[src]

Constructs a new validator using a configuration.

pub fn validate<'a>(
    &self,
    schema: &'a Schema,
    instance: &'a Value
) -> Result<Vec<ValidationError<'a>>, Error>
[src]

Validate an instance against a schema.

The generated validation errors have the same lifetime as the inputted instance; this crate avoids copying data out of your inputted data. Despite having "Error" in their name, they are not Rust errors. A list of validation errors is the successful result of running validate.

Returns an error if if the maximum reference depth is exceeded (see ValidatorConfig::max_depth).

Trait Implementations

impl PartialEq<Validator> for Validator[src]

impl Clone for Validator[src]

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

Performs copy-assignment from source. Read more

impl Default for Validator[src]

impl Eq for Validator[src]

impl Debug for Validator[src]

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

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]