Expand description
Provides IO stream pipe functionality.
This module provides piping functionality for IO streams implementing Read
or Write
.
A pipe can be used to wrap an existing reader or writer, monitoring or transforming data read
from or written to it.
You may use a pipe for archiving (zipping) or to encrypt/decrypt bytes flowing through the pipe reader or writer.
Re-exports§
pub use progress::ProgressPipe;
pub use progress::ProgressReader;
pub use progress::ProgressReporter;
pub use progress::ProgressWriter;
Modules§
Structs§
- Pipe
Reader - A simple generic reader implementation for a pipe.
- Pipe
Writer - A simple generic writer implementation for a pipe.