Struct hyper::client::Client
[−]
[src]
pub struct Client<C, B = Body> { /* fields omitted */ }
A Client to make outgoing HTTP requests.
Methods
impl Client<HttpConnector, Body>
[src]
fn new(handle: &Handle) -> Client<HttpConnector, Body>
[src]
Create a new Client with the default config.
impl Client<HttpConnector, Body>
[src]
fn configure() -> Config<UseDefaultConnector, Body>
[src]
Configure a Client.
Example
let client = hyper::Client::configure() .keep_alive(true) .build(&handle);
impl<C, B> Client<C, B>
[src]
fn handle(&self) -> &Handle
[src]
Return a reference to a handle to the event loop this Client is associated with.
impl<C, B> Client<C, B> where
C: Connect,
B: Stream<Error = Error> + 'static,
B::Item: AsRef<[u8]>,
[src]
C: Connect,
B: Stream<Error = Error> + 'static,
B::Item: AsRef<[u8]>,
fn get(&self, url: Uri) -> FutureResponse
[src]
Send a GET Request using this Client.
fn request(&self, req: Request<B>) -> FutureResponse
[src]
Send a constructed Request using this Client.
Trait Implementations
impl<C, B> Service for Client<C, B> where
C: Connect,
B: Stream<Error = Error> + 'static,
B::Item: AsRef<[u8]>,
[src]
C: Connect,
B: Stream<Error = Error> + 'static,
B::Item: AsRef<[u8]>,
type Request = Request<B>
Requests handled by the service.
type Response = Response
Responses given by the service.
type Error = Error
Errors produced by the service.
type Future = FutureResponse
The future response value.
fn call(&self, req: Self::Request) -> Self::Future
[src]
Process the request and return the response asynchronously.
impl<C: Clone, B> Clone for Client<C, B>
[src]
fn clone(&self) -> Client<C, B>
[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