Struct basehangul::Encoder [-] [+] [src]

pub struct Encoder<Iter> {
    // some fields omitted
}

An iterator adapter that encodes the byte stream into the BaseHangul stream.

Methods

impl<Iter: Iterator<Item=u8>> Encoder<Iter>

fn new(iter: Iter) -> Encoder<Iter>

Creates an encoding adapter.

Trait Implementations

impl<Iter: Iterator<Item=u8>> Iterator for Encoder<Iter>

type Item = char

fn next(&mut self) -> Option<char>

fn size_hint(&self) -> (usize, Option<usize>)