Struct reqwest::Client
[−]
[src]
pub struct Client { /* fields omitted */ }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.
The Client holds a connection pool internally, so it is advised that
you create one and reuse it.
Methods
impl Client[src]
pub fn new() -> Result<Client>[src]
Constructs a new Client.
pub fn gzip(&mut self, enable: bool)[src]
Enable auto gzip decompression by checking the ContentEncoding response header.
pub fn redirect(&mut self, policy: RedirectPolicy)[src]
Set a RedirectPolicy for this client.
pub fn timeout(&mut self, timeout: Duration)[src]
Set a timeout for both the read and write operations of a client.
pub fn get<U: IntoUrl>(&self, url: U) -> RequestBuilder[src]
Convenience method to make a GET request to a URL.
pub fn post<U: IntoUrl>(&self, url: U) -> RequestBuilder[src]
Convenience method to make a POST request to a URL.
pub fn put<U: IntoUrl>(&self, url: U) -> RequestBuilder[src]
Convenience method to make a PUT request to a URL.
pub fn patch<U: IntoUrl>(&self, url: U) -> RequestBuilder[src]
Convenience method to make a PATCH request to a URL.
pub fn delete<U: IntoUrl>(&self, url: U) -> RequestBuilder[src]
Convenience method to make a DELETE request to a URL.
pub fn head<U: IntoUrl>(&self, url: U) -> RequestBuilder[src]
Convenience method to make a HEAD request to a URL.
pub fn request<U: IntoUrl>(&self, method: Method, url: U) -> RequestBuilder[src]
Start building a Request with the Method and Url.
Returns a RequestBuilder, which will allow setting headers and
request body before sending.
Trait Implementations
impl Clone for Client[src]
fn clone(&self) -> Client[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more