Struct vervolg::schema::CsvOptions [] [src]

pub struct CsvOptions {
    pub delimiter: u8,
    pub has_headers: bool,
    pub flexible: bool,
    pub terminator: Terminator,
    pub quote: u8,
    pub escape: Option<u8>,
    pub double_quote: bool,
    pub quoting: bool,
    pub comment: Option<u8>,
    pub buffer_capacity: usize,
}

Various options for the CSV library; ideally, this collection of parameters would reside within the CSV library and could be passed directly to the csv::ReaderBuilder constructor.

Fields

Trait Implementations

Auto Trait Implementations

impl Send for CsvOptions

impl Sync for CsvOptions