remove ext traits (#431)

This commit is contained in:
Carl Lerche
2020-10-16 15:16:23 -07:00
committed by GitHub
parent 447530b8a6
commit 94c543f74b
12 changed files with 199 additions and 209 deletions
+13 -2
View File
@@ -18,11 +18,22 @@
mod buf_impl;
mod buf_mut;
pub mod ext;
mod chain;
mod iter;
mod limit;
#[cfg(feature = "std")]
mod reader;
mod take;
mod vec_deque;
#[cfg(feature = "std")]
mod writer;
pub use self::buf_impl::Buf;
pub use self::buf_mut::BufMut;
pub use self::ext::{BufExt, BufMutExt};
pub use self::chain::Chain;
pub use self::iter::IntoIter;
pub use self::limit::Limit;
pub use self::take::Take;
#[cfg(feature = "std")]
pub use self::{reader::Reader, writer::Writer};