Function hyper::client::conn::http2::handshake

source ·
pub async fn handshake<E, T, B>(
    exec: E,
    io: T
) -> Result<(SendRequest<B>, Connection<T, B, E>)>
where T: Read + Write + Unpin + 'static, B: Body + 'static, B::Data: Send, B::Error: Into<Box<dyn Error + Send + Sync>>, E: Http2ClientConnExec<B, T> + Unpin + Clone,
Available on crate feature client and (crate features http1 or http2) only.
Expand description

Returns a handshake future over some IO.

This is a shortcut for Builder::new().handshake(io). See client::conn for more.