csvp 0.2.0

A CSV parser with a couple additional features
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Config
use super::Offset;

#[derive(Debug)]
pub struct Config {
    pub separator: char,
    pub lines_above: Offset,
}

impl Default for Config {
    fn default() -> Self {
        Self {
            separator: ',',
            lines_above: 0,
        }
    }
}