Export public the combinator types (#318)

This commit is contained in:
Sean McArthur
2019-11-25 10:47:37 -08:00
committed by Carl Lerche
parent eb6efb98d1
commit 7af4e633dc
+4 -4
View File
@@ -10,12 +10,12 @@ mod take;
#[cfg(feature = "std")]
mod writer;
use self::limit::Limit;
use self::take::Take;
use self::chain::Chain;
pub use self::limit::Limit;
pub use self::take::Take;
pub use self::chain::Chain;
#[cfg(feature = "std")]
use self::{reader::Reader, writer::Writer};
pub use self::{reader::Reader, writer::Writer};
/// Extra methods for implementations of `Buf`.
pub trait BufExt: Buf {