this/core/validation/
mod.rs

1//! Validation and filtering system
2//!
3//! This module provides a declarative approach to validating and filtering entity data
4//! before it reaches the handlers. It integrates seamlessly with the entity macro system.
5
6pub mod config;
7pub mod extractor;
8pub mod filters;
9pub mod validators;
10
11pub use config::EntityValidationConfig;
12pub use extractor::Validated;