Skip to content

Commit

Permalink
Export public the combinator types (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar authored and carllerche committed Nov 25, 2019
1 parent 44fb206 commit cdd9fc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/buf/ext/mod.rs
Expand Up @@ -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 {
Expand Down

0 comments on commit cdd9fc0

Please sign in to comment.