Implement chain combinator for Buf

This commit is contained in:
Carl Lerche
2017-03-01 14:22:53 -08:00
parent bb9bf7ee3e
commit 94396162b2
4 changed files with 361 additions and 1 deletions
+2
View File
@@ -19,6 +19,7 @@
mod buf;
mod buf_mut;
mod from_buf;
mod chain;
mod into_buf;
mod iter;
mod reader;
@@ -29,6 +30,7 @@ mod writer;
pub use self::buf::Buf;
pub use self::buf_mut::BufMut;
pub use self::from_buf::FromBuf;
pub use self::chain::Chain;
pub use self::into_buf::IntoBuf;
pub use self::iter::Iter;
pub use self::reader::Reader;