Module http

Source
Expand description

This module re-exports some common items most developers need from the reqwest crate.

The re-exported items include:

  • header: Types and functions for working with HTTP headers.
  • multipart: Types and functions for working with multipart requests.
  • Method: An enum representing HTTP methods.
  • Request: A builder for making HTTP requests.
  • Response: A response to an HTTP request.

This module is intended to provide a convenient way to access commonly used items from the reqwest crate.

Modules§

header
HTTP header types
multipart
multipart/form-data

Structs§

Method
The Request Method (VERB)
Request
A request which can be executed with Client::execute().
Response
A Response to a submitted Request.