Module base64::write

source ·
Expand description

Implementations of io::Write to transparently handle base64.

Structs

  • A Write implementation that base64-encodes data using the provided config and accumulates the resulting base64 utf8 &str in a StrConsumer implementation (typically String), which is then exposed via into_inner().
  • A Write implementation that base64 encodes data before delegating to the wrapped writer.

Traits

  • An abstraction around consuming strs produced by base64 encoding.