valico 4.0.0

JSON Schema validator and JSON coercer
Documentation
use serde_json::Value;

use super::super::errors;
use super::super::scope;

#[allow(missing_copy_implementations)]
pub struct MaxLength {
    pub length: u64,
}

impl super::Validator for MaxLength {
    fn validate(
        &self,
        val: &Value,
        path: &str,
        _scope: &scope::Scope,
        _: &super::ValidationState,
    ) -> super::ValidationState {
        let string = nonstrict_process!(val.as_str(), path);

        if (string.chars().count() as u64) <= self.length {
            super::ValidationState::new()
        } else {
            val_error!(errors::MaxLength {
                path: path.to_string()
            })
        }
    }
}

#[allow(missing_copy_implementations)]
pub struct MinLength {
    pub length: u64,
}

impl super::Validator for MinLength {
    fn validate(
        &self,
        val: &Value,
        path: &str,
        _scope: &scope::Scope,
        _: &super::ValidationState,
    ) -> super::ValidationState {
        let string = nonstrict_process!(val.as_str(), path);

        if (string.chars().count() as u64) >= self.length {
            super::ValidationState::new()
        } else {
            val_error!(errors::MinLength {
                path: path.to_string()
            })
        }
    }
}