This 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.
shell
cargo add axum-valid
```rust use validator::Validate; use serde::Deserialize; use axum_valid::Valid; use axum::extract::Query; use axum::Json;
pub struct Pager { #[validate(range(min = 1, max = 50))] pub pagesize: usize, #[validate(range(min = 1))] pub pageno: usize, }
pub async fn getpagebyquery(
Valid(Query(pager)): Valid
pub async fn getpagebyjson(
Valid(Json(pager)): Valid
When validation errors occur, the extractor will automatically return 400 with validation errors as the HTTP message body.
For more usage examples, please refer to the basic.rs
and custom.rs
files in the tests
directory.
422
: Use 422 Unprocessable Entity
instead of 400 Bad Request
as the status code when validation fails.into_json
: When this feature is enabled, validation errors will be serialized into JSON format and returned as the HTTP body.