io: export Chain of AsyncReadExt::chain (#7599)

This commit is contained in:
Aatif Syed 2025-09-10 09:45:42 +01:00 committed by GitHub
parent 94b6df699b
commit 7127e257a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -275,7 +275,7 @@ cfg_io_util! {
pub(crate) mod util;
pub use util::{
copy, copy_bidirectional, copy_bidirectional_with_sizes, copy_buf, duplex, empty, repeat, sink, simplex, AsyncBufReadExt, AsyncReadExt, AsyncSeekExt, AsyncWriteExt,
BufReader, BufStream, BufWriter, DuplexStream, Empty, Lines, Repeat, Sink, Split, Take, SimplexStream,
BufReader, BufStream, BufWriter, Chain, DuplexStream, Empty, Lines, Repeat, Sink, Split, Take, SimplexStream,
};
}

View File

@ -23,6 +23,7 @@ cfg_io_util! {
pub use buf_writer::BufWriter;
mod chain;
pub use chain::Chain;
mod copy;
pub use copy::copy;