forked from Proxmox/proxmox
proxmox-async: move AsyncChannelWriter to src/io
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
4
proxmox-async/src/io/mod.rs
Normal file
4
proxmox-async/src/io/mod.rs
Normal file
@ -0,0 +1,4 @@
|
||||
//! Helper which implements AsyncRead/AsyncWrite
|
||||
|
||||
mod async_channel_writer;
|
||||
pub use async_channel_writer::AsyncChannelWriter;
|
@ -1,6 +1,7 @@
|
||||
pub mod blocking;
|
||||
pub mod broadcast_future;
|
||||
pub mod compression;
|
||||
pub mod io;
|
||||
pub mod runtime;
|
||||
pub mod stream;
|
||||
pub mod zip;
|
||||
|
@ -1,7 +1,4 @@
|
||||
//! Wrappers between async readers and streams.
|
||||
|
||||
mod async_channel_writer;
|
||||
pub use async_channel_writer::AsyncChannelWriter;
|
||||
|
||||
mod async_reader_stream;
|
||||
pub use async_reader_stream::AsyncReaderStream;
|
||||
|
Reference in New Issue
Block a user