Trait basenc::Decoder [] [src]

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

Create a decoder adapter for an encoding given an Iterator<Item = char>.

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

Associated Types

Required Methods

Implementors