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