Module extract
Types and traits for extracting data from requests.
See axum::extract for more details.
Modules
- rejection Rejection response types.
Structs
- DefaultBodyLimit Layer for configuring the default request body limit.
Traits
- FromRef Used to do reference-to-value conversions thus not consuming the input value.
- FromRequest Types that can be created from requests.
- FromRequestParts Types that can be created from request parts.
-
OptionalFromRequest
Customize the behavior of
Option<Self>as aFromRequestextractor. -
OptionalFromRequestParts
Customize the behavior of
Option<Self>as aFromRequestPartsextractor.
Type Aliases
-
Request
Type alias for
http::Requestwhose body type defaults toBody, the most common body type used with axum.