Skip to main content

CsvField

Type Alias CsvField 

Source
pub type CsvField = DsvField<CSV_LANG>;
Expand description

A CSV field.

Aliased Type§

pub struct CsvField {
    pub value: String,
    pub is_quoted: bool,
    pub span: Range<usize>,
}

Fields§

§value: String

The value of the field.

§is_quoted: bool

Whether the field was quoted in the source.

§span: Range<usize>

The source range of the field.