From fe310f6b1cae602db0e829760fa342c3e560a4a8 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Tue, 16 Feb 2021 22:14:10 +0100 Subject: [PATCH] io: export write::* We weren't exporting WriteExt. We already do that with read::* Signed-off-by: Marc-Antoine Perennou --- src/io/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/mod.rs b/src/io/mod.rs index a673636f..e20ed800 100644 --- a/src/io/mod.rs +++ b/src/io/mod.rs @@ -285,7 +285,7 @@ cfg_std! { pub use repeat::{repeat, Repeat}; pub use seek::Seek; pub use sink::{sink, Sink}; - pub use write::Write; + pub use write::*; pub mod prelude;