pub trait LineParser {
    fn parse_line<'a>(&self, line: &'a str) -> Result<Line<'a>, String>;
}

Required Methods

Implementors