pub async fn dial_tcp(host: &str, port: u16) -> Result<TcpStream>Expand description
Resolve host:port and dial with multi-address Happy Eyeballs racing.
ยงErrors
Returns the last connect error when every candidate fails, or
io::ErrorKind::AddrNotAvailable when DNS yields no addresses.