Struct hyper::client::connect::HttpConnector
source · pub struct HttpConnector<R = GaiResolver> { /* private fields */ }
Expand description
Implementations§
source§impl HttpConnector
impl HttpConnector
sourcepub fn new() -> HttpConnector
pub fn new() -> HttpConnector
Construct a new HttpConnector.
source§impl<R> HttpConnector<R>
impl<R> HttpConnector<R>
sourcepub fn new_with_resolver(resolver: R) -> HttpConnector<R>
pub fn new_with_resolver(resolver: R) -> HttpConnector<R>
Construct a new HttpConnector.
Takes a Resolver
to handle DNS lookups.
sourcepub fn enforce_http(&mut self, is_enforced: bool)
pub fn enforce_http(&mut self, is_enforced: bool)
Option to enforce all Uri
s have the http
scheme.
Enabled by default.
sourcepub fn set_keepalive(&mut self, dur: Option<Duration>)
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
.
sourcepub fn set_nodelay(&mut self, nodelay: bool)
pub fn set_nodelay(&mut self, nodelay: bool)
Set that all sockets have SO_NODELAY
set to the supplied value nodelay
.
Default is false
.
sourcepub fn set_send_buffer_size(&mut self, size: Option<usize>)
pub fn set_send_buffer_size(&mut self, size: Option<usize>)
Sets the value of the SO_SNDBUF option on the socket.
sourcepub fn set_recv_buffer_size(&mut self, size: Option<usize>)
pub fn set_recv_buffer_size(&mut self, size: Option<usize>)
Sets the value of the SO_RCVBUF option on the socket.
sourcepub fn set_local_address(&mut self, addr: Option<IpAddr>)
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
.
sourcepub fn set_local_addresses(&mut self, addr_ipv4: Ipv4Addr, addr_ipv6: Ipv6Addr)
pub fn set_local_addresses(&mut self, addr_ipv4: Ipv4Addr, addr_ipv6: Ipv6Addr)
Set that all sockets are bound to the configured IPv4 or IPv6 address (depending on host’s preferences) before connection.
sourcepub fn set_connect_timeout(&mut self, dur: Option<Duration>)
pub fn set_connect_timeout(&mut self, dur: Option<Duration>)
Set the connect timeout.
If a domain resolves to multiple IP addresses, the timeout will be evenly divided across them.
Default is None
.
sourcepub fn set_happy_eyeballs_timeout(&mut self, dur: Option<Duration>)
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.
sourcepub fn set_reuse_address(&mut self, reuse_address: bool) -> &mut Self
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§
source§impl<R: Clone> Clone for HttpConnector<R>
impl<R: Clone> Clone for HttpConnector<R>
source§fn clone(&self) -> HttpConnector<R>
fn clone(&self) -> HttpConnector<R>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<R: Debug> Debug for HttpConnector<R>
impl<R: Debug> Debug for HttpConnector<R>
Auto Trait Implementations§
impl<R> Freeze for HttpConnector<R>where
R: Freeze,
impl<R> RefUnwindSafe for HttpConnector<R>where
R: RefUnwindSafe,
impl<R> Send for HttpConnector<R>where
R: Send,
impl<R> Sync for HttpConnector<R>where
R: Sync,
impl<R> Unpin for HttpConnector<R>where
R: Unpin,
impl<R> UnwindSafe for HttpConnector<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)