mirror of
https://github.com/openharmony/third_party_rust_bytes.git
synced 2026-07-19 17:05:29 -04:00
Export public the combinator types (#318)
This commit is contained in:
committed by
Carl Lerche
parent
eb6efb98d1
commit
7af4e633dc
+4
-4
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user