pub trait CharSource {
// Required method
fn next(&mut self) -> Result<Option<char>, Error>;
}Expand description
A source of master file characters.
This is very similar to an iterator except that next’s return value has
the result outside for easier error handling.