pub trait LineParser<'a> {
    fn parse_line<'b>(&self, line: &'b [u8], shuffler: &mut Vec<Vec<&'b [u8]>>)
    where
        'a: 'b
; }
Expand description

Methods for parsing a line into a reordered shuffler

Required Methods§

Fills the shuffler with values parsed from the line.

Implementors§