Module rouille::input
[−]
[src]
Analyze the request's headers and body.
This module provides functions and sub-modules that allow you to easily analyze or parse the request's headers and body.
- In order to parse JSON, see the
jsonmodule. - In order to parse input from HTML forms, see the
postmodule. - In order to read a plain text body, see
the
plain_text_bodyfunction.
Reexports
pub use self::json::get_json_input; |
Modules
| json |
Parsing JSON data in the body of a request. |
| multipart |
Parsing data sent with |
| post |
Parsing data sent with a |
Structs
| HttpAuthCredentials |
Credentials returned by |
Functions
| get_basic_http_auth |
Attempts to parse a |
| get_cookies |
Attempts to parse the list of cookies from the request. |
| plain_text_body |
Read plain text data from the body of a request. |