summaryrefslogtreecommitdiffstats
path: root/third_party/rust/base64-0.10.1/src/write/mod.rs
blob: f8ed70768cbf051dd9b04cf990c95aee4eab78f1 (plain)
1
2
3
4
5
6
//! Implementations of `io::Write` to transparently handle base64.
mod encoder;
pub use self::encoder::EncoderWriter;

#[cfg(test)]
mod encoder_tests;