[−][src]Struct hyper::client::Client
A Client to make outgoing HTTP requests.
Methods
impl Client<HttpConnector, Body>
[src]
pub fn new(handle: &Handle) -> Client<HttpConnector, Body>
[src]
Create a new Client with the default config.
impl Client<HttpConnector, Body>
[src]
pub 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> where
C: Connect,
B: Stream<Error = Error> + 'static,
B::Item: AsRef<[u8]>,
[src]
C: Connect,
B: Stream<Error = Error> + 'static,
B::Item: AsRef<[u8]>,
pub fn get(&self, url: Uri) -> FutureResponse
[src]
Send a GET Request using this Client.
pub fn request(&self, req: Request<B>) -> FutureResponse
[src]
Send a constructed Request using this Client.
Trait Implementations
impl<C, B> Clone for Client<C, B>
[src]
impl<C, B> Debug for Client<C, B>
[src]
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]>,
Auto Trait Implementations
impl<C, B = Body> !RefUnwindSafe for Client<C, B>
impl<C, B = Body> !Send for Client<C, B>
impl<C, B = Body> !Sync for Client<C, B>
impl<C, B> Unpin for Client<C, B>
impl<C, B = Body> !UnwindSafe for Client<C, B>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,