Expand description
Simple HTTP requests, synchronous and asynchronous.
See crate ::reqwest.
Modules§
- blocking
- A blocking Client API.
- dns
- DNS resolution
- header
- HTTP header types
- redirect
- Redirect Handling
- tls
- TLS configuration and types
Structs§
- Body
- An asynchronous request body.
- Certificate
- Represents a server X509 certificate.
- Client
- An asynchronous
Clientto make Requests with. - Client
Builder - A
ClientBuildercan be used to create aClientwith custom configuration. - Error
- The Errors that may occur when processing a
Request. - Identity
- Represents a private key and X509 cert as a client certificate.
- Method
- The Request Method (VERB)
- NoProxy
- A configuration for filtering out requests that shouldn’t be proxied
- Proxy
- Configuration of a proxy that a
Clientshould pass requests to. - Request
- A request which can be executed with
Client::execute(). - Request
Builder - A builder to construct the properties of a
Request. - Response
- A Response to a submitted
Request. - Status
Code - An HTTP status code (
status-codein RFC 9110 et al.). - Upgraded
- An upgraded HTTP connection.
- Url
- A parsed URL record.
- Version
- Represents a version of the HTTP spec.
Traits§
- IntoUrl
- A trait to try to convert some type into a
Url. - Response
Builder Ext - Extension trait for http::response::Builder objects
Functions§
- get
- Shortcut method to quickly make a
GETrequest.
Type Aliases§
- Result
- A
Resultalias where theErrcase isreqwest::Error.