tokio-buf 0.1.1

Asynchronous stream of byte buffers
Documentation
1
2
3
4
5
6
7
extern crate tokio_buf;

use tokio_buf::BufStream;

// Ensures that `BufStream` can be a trait object
#[allow(dead_code)]
fn obj(_: &mut BufStream<Item = u32, Error = ()>) {}