1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use derive_more::Display;
use num_traits::AsPrimitive;
use crate::{
registry::MetaSchema,
validation::{Validator, ValidatorMeta},
};
#[derive(Display)]
#[display(fmt = "minimum({}, exclusive: {})", n, exclusive)]
pub struct Minimum {
n: f64,
exclusive: bool,
}
impl Minimum {
#[inline]
pub fn new(n: f64, exclusive: bool) -> Self {
Self { n, exclusive }
}
}
impl<T: AsPrimitive<f64>> Validator<T> for Minimum {
#[inline]
fn check(&self, value: &T) -> bool {
if self.exclusive {
value.as_() > self.n
} else {
value.as_() >= self.n
}
}
}
impl ValidatorMeta for Minimum {
fn update_meta(&self, meta: &mut MetaSchema) {
meta.minimum = Some(self.n);
if self.exclusive {
meta.exclusive_minimum = Some(true);
}
}
}