[−][src]Struct hyper::client::HttpConnector
A connector for the http
scheme.
Performs DNS resolution in a thread pool, and then connects over TCP.
Note
Sets the HttpInfo
value on responses, which includes
transport information such as the remote socket address used.
Methods
impl HttpConnector
[src]
[−]
impl HttpConnector
pub fn new(threads: usize) -> HttpConnector
[src]
[−]
pub fn new(threads: usize) -> HttpConnector
Construct a new HttpConnector.
Takes number of DNS worker threads.
pub fn new_with_executor<E: 'static>(
executor: E,
handle: Option<Handle>
) -> HttpConnector where
E: Executor<GaiTask> + Send + Sync,
[src]
[−]
pub fn new_with_executor<E: 'static>(
executor: E,
handle: Option<Handle>
) -> HttpConnector where
E: Executor<GaiTask> + Send + Sync,
Construct a new HttpConnector.
Takes an executor to run blocking getaddrinfo
tasks on.
impl HttpConnector<TokioThreadpoolGaiResolver>
[src]
[−]
impl HttpConnector<TokioThreadpoolGaiResolver>
pub fn new_with_tokio_threadpool_resolver() -> Self
[src]
[−]
pub fn new_with_tokio_threadpool_resolver() -> Self
Construct a new HttpConnector using the TokioThreadpoolGaiResolver
.
This resolver requires the threadpool runtime to be used.
impl<R> HttpConnector<R>
[src]
[−]
impl<R> HttpConnector<R>
pub fn new_with_resolver(resolver: R) -> HttpConnector<R>
[src]
[−]
pub fn new_with_resolver(resolver: R) -> HttpConnector<R>
Construct a new HttpConnector.
Takes a Resolve
to handle DNS lookups.
pub fn enforce_http(&mut self, is_enforced: bool)
[src]
[−]
pub fn enforce_http(&mut self, is_enforced: bool)
Option to enforce all Uri
s have the http
scheme.
Enabled by default.
pub fn set_reactor(&mut self, handle: Option<Handle>)
[src]
[−]
pub fn set_reactor(&mut self, handle: Option<Handle>)
Set a handle to a Reactor
to register connections to.
If None
, the implicit default reactor will be used.
pub fn set_keepalive(&mut self, dur: Option<Duration>)
[src]
[−]
pub fn set_keepalive(&mut self, dur: Option<Duration>)
Set that all sockets have SO_KEEPALIVE
set with the supplied duration.
If None
, the option will not be set.
Default is None
.
pub fn set_nodelay(&mut self, nodelay: bool)
[src]
[−]
pub fn set_nodelay(&mut self, nodelay: bool)
Set that all sockets have SO_NODELAY
set to the supplied value nodelay
.
Default is false
.
pub fn set_local_address(&mut self, addr: Option<IpAddr>)
[src]
[−]
pub fn set_local_address(&mut self, addr: Option<IpAddr>)
Set that all sockets are bound to the configured address before connection.
If None
, the sockets will not be bound.
Default is None
.
pub fn set_happy_eyeballs_timeout(&mut self, dur: Option<Duration>)
[src]
[−]
pub fn set_happy_eyeballs_timeout(&mut self, dur: Option<Duration>)
Set timeout for RFC 6555 (Happy Eyeballs) algorithm.
If hostname resolves to both IPv4 and IPv6 addresses and connection cannot be established using preferred address family before timeout elapses, then connector will in parallel attempt connection using other address family.
If None
, parallel connection attempts are disabled.
Default is 300 milliseconds.
pub fn set_reuse_address(&mut self, reuse_address: bool) -> &mut Self
[src]
[−]
pub fn set_reuse_address(&mut self, reuse_address: bool) -> &mut Self
Set that all socket have SO_REUSEADDR
set to the supplied value reuse_address
.
Default is false
.
Trait Implementations
impl<R> Connect for HttpConnector<R> where
R: Resolve + Clone + Send + Sync,
R::Future: Send,
[src]
[+]
impl<R> Connect for HttpConnector<R> where
R: Resolve + Clone + Send + Sync,
R::Future: Send,
impl<R: Clone> Clone for HttpConnector<R>
[src]
[+]
impl<R: Clone> Clone for HttpConnector<R>
impl<R: Debug> Debug for HttpConnector<R>
[src]
[+]
impl<R: Debug> Debug for HttpConnector<R>
Auto Trait Implementations
impl<R> Send for HttpConnector<R> where
R: Send,
impl<R> Send for HttpConnector<R> where
R: Send,
impl<R> Sync for HttpConnector<R> where
R: Sync,
impl<R> Sync for HttpConnector<R> where
R: 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