Enum hyper::net::HttpsStream  
                   
                       [−]
                   
               [src]
pub enum HttpsStream<S: NetworkStream> {
    Http(HttpStream),
    Https(S),
}A stream over the HTTP protocol, possibly protected by SSL.
Variants
Http | A plain text stream.  | |
Https | A stream protected by SSL.  |