[−][src]Struct hyper::client::Client
A Client to make outgoing HTTP requests.
Methods
impl Client<HttpConnector, Body>
[src]
impl Client<HttpConnector, Body>
pub fn new() -> Client<HttpConnector, Body>
[src]
pub fn new() -> Client<HttpConnector, Body>
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]
impl Client<(), Body>
pub fn builder() -> Builder
[src]
pub fn builder() -> Builder
Configure a Client.
Example
fn run () { use hyper::Client; let client = Client::builder() .keep_alive(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]
impl<C, B> Client<C, B> where
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]
pub fn get(&self, uri: Uri) -> ResponseFuture where
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
.
pub fn request(&self, req: Request<B>) -> ResponseFuture
[src]
pub fn request(&self, req: Request<B>) -> ResponseFuture
Send a constructed Request using this Client.
Trait Implementations
impl<C, B> Clone for Client<C, B>
[src]
impl<C, B> Clone for Client<C, B>
fn clone(&self) -> Client<C, B>
[src]
fn clone(&self) -> Client<C, B>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Default for Client<HttpConnector, Body>
[src]
impl Default for Client<HttpConnector, Body>
impl<C, B> Debug for Client<C, B>
[src]
impl<C, B> Debug for Client<C, B>
Auto Trait Implementations
impl<C, B> Send for Client<C, B> where
B: Send,
C: Send + Sync,
impl<C, B> Send for Client<C, B> where
B: Send,
C: Send + Sync,
impl<C, B> Sync for Client<C, B> where
B: Send,
C: Send + Sync,
impl<C, B> Sync for Client<C, B> where
B: Send,
C: Send + Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
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]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> Erased for T
[src]
impl<T> Erased for T