lcov-parser 1.0.1

LCOV report parser for Rust
Documentation
extern crate lcov_parser;

use lcov_parser:: { LCOVParser, LCOVRecord };

fn main() {
    let res = LCOVParser::new("TNaa").parse();

    if (res.is_err()) {
        println!("{}", res.err().unwrap());
    }

/*
for record in records.iter() {
    match record {
        &LCOVRecord::SourceFile(ref name) => println!("start file: {}", name),
        &LCOVRecord::EndOfRecord => println!("end file"),
        _ => { continue; }
    }
}*/

}