[][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.

Implementations

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<Pin<Box<dyn Future<Output = ()> + Send>>> + Send + Sync + 'static, 
[src]

Provide an executor to execute background HTTP2 tasks.

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: HttpBody + 'static,
    B::Data: Send,
    B::Error: Into<Box<dyn StdError + Send + Sync>>, 
[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 !RefUnwindSafe for Builder[src]

impl Send for Builder[src]

impl Sync for Builder[src]

impl Unpin for Builder[src]

impl !UnwindSafe for Builder[src]

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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, 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.