Enum hyper::net::HttpStream [-] [+] [src]

pub enum HttpStream {
    Http(CloneTcpStream),
    Https(SslStream<CloneTcpStream>),
}

A wrapper around a TcpStream.

Variants

Http

A stream over the HTTP protocol.

Https

A stream over the HTTP protocol, protected by SSL.

Trait Implementations

impl Read for HttpStream

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<(), Error>

fn read_to_string(&mut self, buf: &mut String) -> Result<(), Error>

impl Write for HttpStream

fn write(&mut self, msg: &[u8]) -> Result<usize>

fn flush(&mut self) -> Result<()>

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

impl NetworkStream for HttpStream

fn peer_addr(&mut self) -> Result<SocketAddr>

Derived Implementations

impl Clone for HttpStream

fn clone(&self) -> HttpStream

fn clone_from(&mut self, source: &Self)