LineRead

Trait LineRead 

Source
pub trait LineRead {
    // Required method
    fn next_line(&mut self) -> Option<Line>;
}
Expand description

A trait generic for implementing line reading use crate::by PropertyParser.

Required Methods§

Source

fn next_line(&mut self) -> Option<Line>

Return the next line unwrapped and formated.

Implementors§