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: StringThe value of the field.
is_quoted: boolWhether the field was quoted in the source.
span: Range<usize>The source range of the field.