Trait basenc::Encoder [] [src]

pub trait Encoder<I: Iterator<Item = u8>>: Encoding {
    type Encoder: Iterator<Item = char>;
    fn encoder(self, iter: I) -> Self::Encoder;
}

Create an encoder adapter for an encoding given an Iterator<Item = u8>.

Helper for Encode, should be merged into Encoding but can't be due to HKT reasons.

Associated Types

Required Methods

Implementors