Struct std::io::CharsUnstable [-] [+] [src]

pub struct Chars<R> {
    // some fields omitted
}

A bridge from implementations of Read to an Iterator of char.

See ReadExt::chars for more information.

Trait Implementations

impl<R: Read> Iterator for Chars<R>

type Item = Result<char, CharsError>

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

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