aboutsummaryrefslogtreecommitdiff
path: root/src/write/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/write/mod.rs')
-rw-r--r--src/write/mod.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/write/mod.rs b/src/write/mod.rs
index 98cb48c..2a617db 100644
--- a/src/write/mod.rs
+++ b/src/write/mod.rs
@@ -1,8 +1,11 @@
//! Implementations of `io::Write` to transparently handle base64.
mod encoder;
mod encoder_string_writer;
-pub use self::encoder::EncoderWriter;
-pub use self::encoder_string_writer::EncoderStringWriter;
+
+pub use self::{
+ encoder::EncoderWriter,
+ encoder_string_writer::{EncoderStringWriter, StrConsumer},
+};
#[cfg(test)]
mod encoder_tests;