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

Required Methods

Implementors