Skip to content

Commit 7127e25

Browse files
authored
io: export Chain of AsyncReadExt::chain (#7599)
1 parent 94b6df6 commit 7127e25

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tokio/src/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ cfg_io_util! {
275275
pub(crate) mod util;
276276
pub use util::{
277277
copy, copy_bidirectional, copy_bidirectional_with_sizes, copy_buf, duplex, empty, repeat, sink, simplex, AsyncBufReadExt, AsyncReadExt, AsyncSeekExt, AsyncWriteExt,
278-
BufReader, BufStream, BufWriter, DuplexStream, Empty, Lines, Repeat, Sink, Split, Take, SimplexStream,
278+
BufReader, BufStream, BufWriter, Chain, DuplexStream, Empty, Lines, Repeat, Sink, Split, Take, SimplexStream,
279279
};
280280
}
281281

tokio/src/io/util/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ cfg_io_util! {
2323
pub use buf_writer::BufWriter;
2424

2525
mod chain;
26+
pub use chain::Chain;
2627

2728
mod copy;
2829
pub use copy::copy;

0 commit comments

Comments
 (0)