summaryrefslogtreecommitdiffstats
path: root/tokio/src/io/mod.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-07-09 12:37:14 -0700
committerGitHub <noreply@github.com>2019-07-09 12:37:14 -0700
commit64343f1b786b386bb4fbd6169fc4850cce9e245a (patch)
treecc541e2ad896afdd44cd7c3d43000deab4b41009 /tokio/src/io/mod.rs
parent82795184c1a8ce136c4f0fee2a6c9127ff495565 (diff)
tokio: add AsyncWriteExt::write_all (#1277)
Diffstat (limited to 'tokio/src/io/mod.rs')
-rw-r--r--tokio/src/io/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tokio/src/io/mod.rs b/tokio/src/io/mod.rs
index 99e4954f..48dbdf16 100644
--- a/tokio/src/io/mod.rs
+++ b/tokio/src/io/mod.rs
@@ -42,6 +42,7 @@ mod copy;
mod read;
mod read_exact;
mod write;
+mod write_all;
pub use self::async_read_ext::AsyncReadExt;
pub use self::async_write_ext::AsyncWriteExt;