logo
 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 std::collections::{BTreeMap, HashMap};

use derive_more::Display;

use crate::{
    registry::MetaSchema,
    validation::{Validator, ValidatorMeta},
};

#[derive(Display)]
#[display(fmt = "minProperties({})", len)]
pub struct MinProperties {
    len: usize,
}

impl MinProperties {
    #[inline]
    pub fn new(len: usize) -> Self {
        Self { len }
    }
}

impl<K, V> Validator<HashMap<K, V>> for MinProperties {
    #[inline]
    fn check(&self, value: &HashMap<K, V>) -> bool {
        value.len() >= self.len
    }
}

impl<K, V> Validator<BTreeMap<K, V>> for MinProperties {
    #[inline]
    fn check(&self, value: &BTreeMap<K, V>) -> bool {
        value.len() >= self.len
    }
}

impl ValidatorMeta for MinProperties {
    fn update_meta(&self, meta: &mut MetaSchema) {
        meta.min_properties = Some(self.len);
    }
}