Trait hcklib::line_parser::LineParser

source ·
pub trait LineParser<'a> {
    // Required method
    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§

source

fn parse_line<'b>(&self, line: &'b [u8], shuffler: &mut Vec<Vec<&'b [u8]>>)
where 'a: 'b,

Fills the shuffler with values parsed from the line.

Implementors§