mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-30 04:02:42 +01:00
23 lines
389 B
Rust
23 lines
389 B
Rust
|
use axum::{
|
||
|
body::Body,
|
||
|
extract::{rejection::JsonRejection, FromRequest, Json},
|
||
|
};
|
||
|
use axum_macros::FromRequest;
|
||
|
use serde::Deserialize;
|
||
|
|
||
|
#[derive(Deserialize, FromRequest)]
|
||
|
#[from_request(via(Json))]
|
||
|
struct Extractor {
|
||
|
one: i32,
|
||
|
two: String,
|
||
|
three: bool,
|
||
|
}
|
||
|
|
||
|
fn assert_from_request()
|
||
|
where
|
||
|
Extractor: FromRequest<Body, Rejection = JsonRejection>,
|
||
|
{
|
||
|
}
|
||
|
|
||
|
fn main() {}
|