pub trait Sink { type Error; // Required method fn write_encoded_bytes(&mut self, encoded: &[u8]) -> Result<(), Self::Error>; }
The output mechanism for ChunkedEncoder’s encoded bytes.
Handle a chunk of encoded base64 data (as UTF-8 bytes)