mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-21 00:00:12 +02:00
Export public the combinator types (#318)
This commit is contained in:
committed by
Carl Lerche
parent
44fb206148
commit
cdd9fc09cd
+4
-4
@@ -10,12 +10,12 @@ mod take;
|
|||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
mod writer;
|
mod writer;
|
||||||
|
|
||||||
use self::limit::Limit;
|
pub use self::limit::Limit;
|
||||||
use self::take::Take;
|
pub use self::take::Take;
|
||||||
use self::chain::Chain;
|
pub use self::chain::Chain;
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
use self::{reader::Reader, writer::Writer};
|
pub use self::{reader::Reader, writer::Writer};
|
||||||
|
|
||||||
/// Extra methods for implementations of `Buf`.
|
/// Extra methods for implementations of `Buf`.
|
||||||
pub trait BufExt: Buf {
|
pub trait BufExt: Buf {
|
||||||
|
|||||||
Reference in New Issue
Block a user