pub async fn handle_request<I, O, E, F, Fut, B, Err>(
stdin: I,
stdout: O,
stderr: E,
request_fn: F,
) -> Result<(), Error>Available on crate feature
server only.Expand description
Handles a CGI request by converting it to an HTTP request, invoking the provided request function, and then converting the HTTP response back to a CGI response.