pub struct Client { /* private fields */ }Expand description
A Client to make Requests with.
The Client has various configuration values to tweak, but the defaults
are set to what is usually the most commonly desired value. To configure a
Client, use Client::builder().
The Client holds a connection pool internally, so it is advised that
you create one and reuse it.
Implementations§
Source§impl Client
impl Client
Sourcepub fn builder() -> ClientBuilder
Available on non-crate feature async only.
pub fn builder() -> ClientBuilder
async only.Creates a ClientBuilder to configure a Client.
This is the same as ClientBuilder::new().
Sourcepub fn get<U: IntoUrl>(&self, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn get<U: IntoUrl>(&self, url: U) -> RequestBuilder
async only.Convenience method to make a GET request to a URL.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn post<U: IntoUrl>(&self, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn post<U: IntoUrl>(&self, url: U) -> RequestBuilder
async only.Convenience method to make a POST request to a URL.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn put<U: IntoUrl>(&self, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn put<U: IntoUrl>(&self, url: U) -> RequestBuilder
async only.Convenience method to make a PUT request to a URL.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn patch<U: IntoUrl>(&self, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn patch<U: IntoUrl>(&self, url: U) -> RequestBuilder
async only.Convenience method to make a PATCH request to a URL.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn delete<U: IntoUrl>(&self, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn delete<U: IntoUrl>(&self, url: U) -> RequestBuilder
async only.Convenience method to make a DELETE request to a URL.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn head<U: IntoUrl>(&self, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn head<U: IntoUrl>(&self, url: U) -> RequestBuilder
async only.Convenience method to make a HEAD request to a URL.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn request<U: IntoUrl>(&self, method: Method, url: U) -> RequestBuilder
Available on non-crate feature async only.
pub fn request<U: IntoUrl>(&self, method: Method, url: U) -> RequestBuilder
async only.Start building a Request with the Method and Url.
Returns a RequestBuilder, which will allow setting headers and
request body before sending.
§Errors
This method fails whenever supplied Url cannot be parsed.
Sourcepub fn execute(&self, request: Request) -> Result<Response, Error>
Available on non-crate feature async only.
pub fn execute(&self, request: Request) -> Result<Response, Error>
async only.Executes a Request.
A Request can be built manually with Request::new() or obtained
from a RequestBuilder with RequestBuilder::build().
You should prefer to use the RequestBuilder and
RequestBuilder::send().
§Errors
This method fails if there was an error while sending request, redirect loop was detected or redirect limit was exhausted.