pub trait TextLineSource<C: Character> {
// Required method
fn get_line(&mut self) -> Option<TextLine<C>>;
}Expand description
A source of lines of characters, e.g. a file or a string.
pub trait TextLineSource<C: Character> {
// Required method
fn get_line(&mut self) -> Option<TextLine<C>>;
}A source of lines of characters, e.g. a file or a string.