Sign in
android
/
toolchain
/
rustc
/
951ae7a5eefab93734d1309f0497487f13f59fbf
/
.
/
vendor
/
base64-0.21.2
/
src
/
read
/
mod.rs
blob: 856064481cba1745a30595e91ef1d5bfe85c52e7 [
file
] [
log
] [
blame
]
//! Implementations of `io::Read` to transparently decode base64.
mod
decoder
;
pub
use
self
::
decoder
::
DecoderReader
;
#[
cfg
(
test
)]
mod
decoder_tests
;