axum-valid

The Valid crate provides a Valid type that can be used in combination with Json, Path, Query, and Form types to validate the entities that implement the Validate trait.

Usage

```rust use validator::Validate; use serde::Deserialize;

[derive(Debug, Validate, Deserialize)]

[serde(rename_all = "camelCase")]

pub struct Pager { #[validate(range(min = 1, max = 50))] pagesize: usize, #[validate(range(min = 1))] pageno: usize, }

pub async fn getpagebyquery( Valid(Query(pager)): Valid>, ) { assert!((1..=50).contains(pager.pagesize)); assert!((1..).contains(pager.page_no)); }

pub async fn getpagebyjson( Valid(Json(pager)): Valid>, ) { assert!((1..=50).contains(pager.pagesize)); assert!((1..).contains(pager.page_no)); } ```