Expand description
Simple HTTP requests, synchronous and asynchronous.
See crate ::reqwest
.
Modules§
- A blocking Client API.
- DNS resolution
- HTTP header types
- Redirect Handling
- TLS configuration and types
Structs§
- An asynchronous request body.
- Represents a server X509 certificate.
- An asynchronous
Client
to make Requests with. - A
ClientBuilder
can be used to create aClient
with custom configuration. - The Errors that may occur when processing a
Request
. - Represents a private key and X509 cert as a client certificate.
- The Request Method (VERB)
- A configuration for filtering out requests that shouldn’t be proxied
- Configuration of a proxy that a
Client
should pass requests to. - A request which can be executed with
Client::execute()
. - A builder to construct the properties of a
Request
. - A Response to a submitted
Request
. - An HTTP status code (
status-code
in RFC 9110 et al.). - An upgraded HTTP connection.
- A parsed URL record.
- Represents a version of the HTTP spec.
Traits§
- A trait to try to convert some type into a
Url
. - Extension trait for http::response::Builder objects
Functions§
- Shortcut method to quickly make a
GET
request.
Type Aliases§
- A
Result
alias where theErr
case isreqwest::Error
.