Function handshake
pub async fn handshake<T, B>(
exec: Executor,
io: T,
) -> Result<(SendRequest<B>, Connection<T, B>), Error>Expand description
Returns a handshake future over some IO.
This is a shortcut for Builder::new(exec).handshake(io).
See client::conn for more.