We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7585b93 commit 1c1eb15Copy full SHA for 1c1eb15
src/lib.rs
@@ -1,5 +1,12 @@
1
//! Combine a reader + writer into a duplex of Read + Write.
2
//!
3
+//! This is useful when you need a reader + writer, but it doesn't come neatly
4
+//! pre-packaged. This allows wiring it together with minimal effort.
5
+//! See also: [`io::empty`], [`io::sink`].
6
+//!
7
+//! [`io::empty`]: https://docs.rs/async-std/1.1.0/async_std/io/fn.empty.html
8
+//! [`io::sink`]: https://docs.rs/async-std/1.1.0/async_std/io/fn.sink.html
9
10
//! # Examples
11
12
//! Read a line from stdin, and write it to stdout. All from the same `stdio`
0 commit comments