[−][src]Struct hyper::client::Client
A Client to make outgoing HTTP requests.
Methods
impl Client<HttpConnector, Body>
[src][−]
pub fn new() -> Client<HttpConnector, Body>
[src][−]
Create a new Client with the default config.
Note
The default connector does not handle TLS. Speaking to https
destinations will require configuring a connector that implements
TLS.
impl Client<(), Body>
[src][−]
pub fn builder() -> Builder
[src][−]
Create a builder to configure a new Client
.
Example
use hyper::Client; let client = Client::builder() .keep_alive(true) .http2_only(true) .build_http();
impl<C, B> Client<C, B> where
C: Connect + Sync + 'static,
C::Transport: 'static,
C::Future: 'static,
B: Payload + Send + 'static,
B::Data: Send,
[src][−]
C: Connect + Sync + 'static,
C::Transport: 'static,
C::Future: 'static,
B: Payload + Send + 'static,
B::Data: Send,
pub fn get(&self, uri: Uri) -> ResponseFuture where
B: Default,
[src][−]
B: Default,
Send a GET
request to the supplied Uri
.
Note
This requires that the Payload
type have a Default
implementation.
It should return an "empty" version of itself, such that
Payload::is_end_stream
is true
.
Example
use hyper::{Client, Uri}; let client = Client::new(); let future = client.get(Uri::from_static("http://httpbin.org/ip"));
pub fn request(&self, req: Request<B>) -> ResponseFuture
[src][−]
Send a constructed Request
using this Client
.
Example
use hyper::{Body, Client, Request}; let client = Client::new(); let req = Request::builder() .method("POST") .uri("http://httpin.org/post") .body(Body::from("Hallo!")) .expect("request builder"); let future = client.request(req);
Trait Implementations
impl Default for Client<HttpConnector, Body>
[src][+]
impl<C, B> Clone for Client<C, B>
[src][+]
impl<C, B> Debug for Client<C, B>
[src][+]
Auto Trait Implementations
impl<C, B> Send for Client<C, B> where
B: Send,
C: Send + Sync,
B: Send,
C: Send + Sync,
impl<C, B> Sync for Client<C, B> where
B: Send,
C: Send + Sync,
B: Send,
C: Send + Sync,
Blanket Implementations
impl<T> From for T
[src][−]
impl<T, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][−]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src][−]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src][−]
impl<T> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][−]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src][−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][−]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src][−]
impl<T> Any for T where
T: 'static + ?Sized,
[src][−]
T: 'static + ?Sized,