mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-30 00:00:32 +02:00
* Limit size of request bodies in `Bytes` extractor (#1346) * Apply default limit to request body size * Support disabling the default limit * docs * changelog * fix doc test * fix docs links * Avoid unhelpful compiler suggestion (#1251) Co-authored-by: Jonas Platte <[email protected]>
7 lines
99 B
Rust
7 lines
99 B
Rust
use axum_macros::debug_handler;
|
|
|
|
#[debug_handler]
|
|
async fn handler<T>(extract: T) {}
|
|
|
|
fn main() {}
|