//! Asynchronous stream of bytes.
//!
//! This module contains the `BufStream` trait and a number of combinators for
//! this trait. The trait is similar to `Stream` in the `futures` library, but
//! instead of yielding arbitrary values, it only yields types that implement
//! `Buf` (i.e, byte collections).
//!
//! Having a dedicated trait for this case enables greater functionality and
//! ease of use.
//!
//! This module will eventually be moved into Tokio.
pub use BufStream;
pub use Chain;
pub use Collect;
pub use ;
pub use FromBufStream;
pub use SizeHint;
pub use StdStream;