Implement iterator adapter for Buf

This commit is contained in:
Carl Lerche
2017-03-01 10:03:28 -08:00
parent 4f8c565111
commit 8fec8a92ad
4 changed files with 173 additions and 2 deletions
+2
View File
@@ -22,6 +22,7 @@ mod buf;
mod buf_mut;
mod from_buf;
mod into_buf;
mod iter;
mod reader;
mod source;
mod take;
@@ -31,6 +32,7 @@ pub use self::buf::Buf;
pub use self::buf_mut::BufMut;
pub use self::from_buf::FromBuf;
pub use self::into_buf::IntoBuf;
pub use self::iter::Iter;
pub use self::reader::Reader;
pub use self::source::Source;
pub use self::take::Take;