Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
rust
/
crates
/
base64
/
0029ba4ff27a13993e509b4de972ac79500ddb5c
/
.
/
src
/
write
/
mod.rs
blob: 98cb48c4a0abaeb93036f47faca02988a8ac8f8c [
file
] [
log
] [
blame
]
//! 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
;
#[
cfg
(
test
)]
mod
encoder_tests
;