Sign in
android
/
toolchain
/
cargo-deny
/
HEAD
/
.
/
android
/
vendor
/
base64-0.21.7
/
src
/
write
/
mod.rs
blob: 2a617db9de7b2ffb982d5222643b902f3d1c3529 [
file
] [
log
] [
blame
]
//! Implementations of `io::Write` to transparently handle base64.
mod
encoder
;
mod
encoder_string_writer
;
pub
use
self
::{
encoder
::
EncoderWriter
,
encoder_string_writer
::{
EncoderStringWriter
,
StrConsumer
},
};
#[
cfg
(
test
)]
mod
encoder_tests
;