Module spring_web::extractor
source · Expand description
axum extract
Modules§
- Extractor for getting connection information from a client.
- Extractor that will get captures from the URL and parse them using
serde
. - Rejection response types.
Structs§
- Extract the components registered by the plugin from AppState
- Extractor for getting connection information produced by a
Connected
. - Layer for configuring the default request body limit.
- Extractor and response for extensions.
- URL encoded extractor and response.
- Extractor that resolves the hostname of the request.
- JSON Extractor / Response.
- Access the path in the router that matches the request.
- Access the path the matched the route is nested at.
- Extractor that gets the original request URI regardless of nesting.
- Extractor that will get captures from the URL and parse them using
serde
. - Extractor that deserializes query strings into some type.
- Extractor that extracts raw form requests.
- Extractor that will get captures from the URL without deserializing them.
- Extractor that extracts the raw query string, without parsing it.
- Extractor for state.
Traits§
- Used to do reference-to-value conversions thus not consuming the input value.
- Types that can be created from requests.
- Types that can be created from request parts.
Type Aliases§
- Type alias for
http::Request
whose body type defaults toBody
, the most common body type used with axum.