Enum hyper::net::HttpStreamExperimental
[-]
[+]
[src]
pub enum HttpStream { Http(TcpStream), Https(Arc<Mutex<SslStream<TcpStream>>>, SocketAddr), }
A wrapper around a TcpStream.
Variants
Http | A stream over the HTTP protocol. |
Https | A stream over the HTTP protocol, protected by SSL. |