Struct evzht9h3nznqzwl::codec::http::HttpClientCodec [] [src]

pub struct HttpClientCodec;

A codec to be used with tokio codecs that can serialize HTTP requests and deserialize HTTP responses. One can use this on it's own without websockets to make a very bare async HTTP server.

Example

use websocket::async::HttpClientCodec;

let mut core = Core::new().unwrap();
let addr = "crouton.net".parse().unwrap();

let f = TcpStream::connect(&addr, &core.handle())
    .and_then(|s| {
        Ok(s.framed(HttpClientCodec))
    })
    .and_then(|s| {
        s.send(Incoming {
            version: HttpVersion::Http11,
            subject: (Method::Get, RequestUri::AbsolutePath("/".to_string())),
            headers: Headers::new(),
        })
    })
    .map_err(|e| e.into())
    .and_then(|s| s.into_future().map_err(|(e, _)| e))
    .map(|(m, _)| println!("You got a crouton: {:?}", m));

core.run(f).unwrap();

Trait Implementations

impl Copy for HttpClientCodec
[src]

impl Clone for HttpClientCodec
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HttpClientCodec
[src]

[src]

Formats the value using the given formatter.

impl Encoder for HttpClientCodec
[src]

The type of items consumed by the Encoder

The type of encoding errors. Read more

[src]

Encodes a frame into the buffer provided. Read more

impl Decoder for HttpClientCodec
[src]

The type of decoded frames.

The type of unrecoverable frame decoding errors. Read more

[src]

Attempts to decode a frame from the provided buffer of bytes. Read more

[src]

A default method available to be called when there are no more bytes available to be read from the underlying I/O. Read more