[][src]Struct hyper::client::conn::Builder

pub struct Builder { /* fields omitted */ }

A builder to configure an HTTP connection.

After setting options, the builder is used to create a Handshake future.

Methods

impl Builder[src]

pub fn new() -> Builder[src]

Creates a new connection builder.

pub fn executor<E>(&mut self, exec: E) -> &mut Builder where
    E: Executor<Box<dyn Future<Item = (), Error = ()> + Send>> + Send + Sync + 'static, 
[src]

Provide an executor to execute background HTTP2 tasks.

pub fn http2_only(&mut self, enabled: bool) -> &mut Builder[src]

Sets whether HTTP2 is required.

Default is false.

pub fn handshake<T, B>(&self, io: T) -> Handshake<T, B> where
    T: AsyncRead + AsyncWrite + Send + 'static,
    B: Payload + 'static, 
[src]

Constructs a connection with the configured options and IO.

Trait Implementations

impl Clone for Builder[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Builder[src]

Auto Trait Implementations

impl Send for Builder

impl Sync for Builder

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Erased for T