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
42
43
44
45
46
47
48
//! Configuration validation.
//!
//! Provides the [`Validate`] trait and two validation passes:
//! - **Structural** ([`structural`]) -- Validates individual directive constraints
//! (e.g. `minpoll <= maxpoll` for server directives)
//! - **Semantic** ([`semantic`]) -- Validates cross-directive constraints
//! (e.g. matching number of `ntsservercert` and `ntsserverkey` directives)
use crate*;
use crateDirectiveError;
/// Trait for validating chrony configuration.
///
/// Implemented by [`ChronyConfig`] to run both structural and semantic validation passes.
///
/// # Examples
///
/// ```rust
/// use chrony_confile::prelude::*;
///
/// let config: ChronyConfig = "\
/// server ntp.example.com minpoll 6 maxpoll 4
/// ".parse()?;
///
/// let errors = config.validate();
///
/// // minpoll > maxpoll is a validation error
/// assert!(!errors.is_empty());
/// # Ok::<_, chrony_confile::ParseError>(())
/// ```