this-rs 0.0.9

Framework for building complex multi-entity REST and GraphQL APIs with many relationships
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Validation and filtering system
//!
//! This module provides a declarative approach to validating and filtering entity data
//! before it reaches the handlers. It integrates seamlessly with the entity macro system.

pub mod config;
pub mod extractor;
pub mod filters;
pub mod validators;

pub use config::EntityValidationConfig;
pub use extractor::Validated;