valico/json_schema/validators/
maxmin_length.rsuse 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 {
let string = nonstrict_process!(val.as_str(), path);
if (string.len() 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 {
let string = nonstrict_process!(val.as_str(), path);
if (string.len() as u64) >= self.length {
super::ValidationState::new()
} else {
val_error!(
errors::MinLength {
path: path.to_string()
}
)
}
}
}