pub trait StrConsumer {
    fn consume(&mut self, buf: &str);
}
Expand description

An abstraction around consuming strs produced by base64 encoding.

Required Methods

Consume the base64 encoded data in buf

Implementations on Foreign Types

As for io::Write, StrConsumer is implemented automatically for &mut S.

Pushes the str onto the end of the String

Implementors