Struct ConnectionBuilder

Source
pub struct ConnectionBuilder { /* private fields */ }

Implementations§

Source§

impl ConnectionBuilder

Source

pub fn keepalive(self, time: Option<Duration>) -> Self

Set that all sockets have SO_KEEPALIVE set with the supplied duration to remain idle before sending TCP keepalive probes.

If None, keepalive is disabled.

Default is None.

Source

pub fn keepalive_interval(self, interval: Option<Duration>) -> Self

Set the duration between two successive TCP keepalive retransmissions, if acknowledgement to the previous keepalive transmission is not received.

Source

pub fn keepalive_retries(self, retries: Option<u32>) -> Self

Set the number of retransmissions to be carried out before declaring that remote end is not available.

Source

pub fn nodelay(self, nodelay: bool) -> Self

Set that all sockets have SO_NODELAY set to the supplied value nodelay.

Default is false.

Source

pub fn send_buffer_size(self, size: Option<usize>) -> Self

Sets the value of the SO_SNDBUF option on the socket.

Source

pub fn recv_buffer_size(self, size: Option<usize>) -> Self

Sets the value of the SO_RCVBUF option on the socket.

Source

pub fn local_address(self, addr: Option<IpAddr>) -> Self

Set that all sockets are bound to the configured address before connection.

If None, the sockets will not be bound.

Default is None.

Source

pub fn local_addresses(self, addr_ipv4: Ipv4Addr, addr_ipv6: Ipv6Addr) -> Self

Set that all sockets are bound to the configured IPv4 or IPv6 address (depending on host’s preferences) before connection.

Source

pub fn connect_timeout(self, dur: Option<Duration>) -> Self

Set the connect timeout.

If a domain resolves to multiple IP addresses, the timeout will be evenly divided across them.

Default is None.

Source

pub fn happy_eyeballs_timeout(self, dur: Option<Duration>) -> Self

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.

Source

pub fn reuse_address(self, reuse_address: bool) -> Self

Set that all socket have SO_REUSEADDR set to the supplied value reuse_address.

Default is false.

Source

pub fn interface<S: Into<String>>(self, interface: S) -> Self

Sets the value for the SO_BINDTODEVICE option on this socket.

If a socket is bound to an interface, only packets received from that particular interface are processed by the socket. Note that this only works for some socket types, particularly AF_INET sockets.

On Linux it can be used to specify a VRF, but the binary needs to either have CAP_NET_RAW or to be run as root.

This function is only available on Android、Fuchsia and Linux.

Source

pub async fn establish(self) -> Result<Io, Error>

Build and establish connection

Source

pub async fn tls_setup(self) -> Result<TlsBuilder, Error>

Build connection and proceed with tls setup.

Source

pub fn socks5_proxy_setup(self, proxy_addr: Uri) -> Socks5ProxyBuilder

Build connection and proceed with socks5 proxy setup.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,