[][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
    &'a E: Executor,
    E: 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.

Important traits for &'_ mut F
pub fn http2_initial_stream_window_size(
    &mut self,
    sz: impl Into<Option<u32>>
) -> &mut Self
[src]

Sets the SETTINGS_INITIAL_WINDOW_SIZE option for HTTP2 stream-level flow control.

Default is 65,535

Important traits for &'_ mut F
pub fn http2_initial_connection_window_size(
    &mut self,
    sz: impl Into<Option<u32>>
) -> &mut Self
[src]

Sets the max connection-level flow control for HTTP2

Default is 65,535

pub fn handshake<T, B>(
    &self,
    io: T
) -> impl Future<Output = Result<(SendRequest<B>, Connection<T, B>)>> where
    T: AsyncRead + AsyncWrite + Unpin + Send + 'static,
    B: Payload + 'static,
    B::Data: Unpin
[src]

Constructs a connection with the configured options and IO.

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

Auto Trait Implementations

impl Sync for Builder

impl Send for Builder

impl Unpin for Builder

impl !UnwindSafe for Builder

impl !RefUnwindSafe for Builder

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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