tk-bufstream 0.3.0

A buffered stream backed by contiguous buffers (netbuf) for tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[warn(missing_docs)]

extern crate netbuf;
extern crate futures;
extern crate tokio_io;

pub use netbuf::Buf;
pub use iobuf::IoBuf;
pub use flushed::Flushed;
pub use frame::{Decode, Encode, Framed, ReadFramed, WriteFramed};
pub use split::{ReadBuf, WriteBuf, WriteRaw, FutureWriteRaw};
pub use mock::{Mock, MockData};

mod iobuf;
mod flushed;
mod frame;
mod split;
mod mock;