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.
Examples
let client = Client::new()?; let resp = client.get("http://httpbin.org/").send()?;
Methods
impl Client[src]
fn new() -> Result<Client>
Constructs a new Client.
fn gzip(&mut self, enable: bool)
Enable auto gzip decompression by checking the ContentEncoding response header.
Default is enabled.
fn redirect(&mut self, policy: RedirectPolicy)
Set a RedirectPolicy for this client.
Default will follow redirects up to a maximum of 10.
fn referer(&mut self, enable: bool)
Enable or disable automatic setting of the Referer header.
Default is true.
fn timeout(&mut self, timeout: Duration)
Set a timeout for both the read and write operations of a client.
fn get<U: IntoUrl>(&self, url: U) -> RequestBuilder
Convenience method to make a GET request to a URL.
fn post<U: IntoUrl>(&self, url: U) -> RequestBuilder
Convenience method to make a POST request to a URL.
fn put<U: IntoUrl>(&self, url: U) -> RequestBuilder
Convenience method to make a PUT request to a URL.
fn patch<U: IntoUrl>(&self, url: U) -> RequestBuilder
Convenience method to make a PATCH request to a URL.
fn delete<U: IntoUrl>(&self, url: U) -> RequestBuilder
Convenience method to make a DELETE request to a URL.
fn head<U: IntoUrl>(&self, url: U) -> RequestBuilder
Convenience method to make a HEAD request to a URL.
fn request<U: IntoUrl>(&self, method: Method, url: U) -> RequestBuilder
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
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more