pub fn raw_urlencoded_post_input(
request: &Request,
) -> Result<Vec<(String, String)>, PostError>
Expand description
Attempts to decode the POST
data received by the request.
If successful, returns a list of fields and values.
Returns an error if the request’s content-type is not related to POST data.