Struct quick_csv::Row
[−]
[src]
pub struct Row { // some fields omitted }
Row struct used as Csv iterator Item
Row can be decoded into a Result
Methods
impl Row
[src]
fn columns<'a>(&'a self) -> Result<Columns<'a>>
Gets an iterator over columns
fn bytes_columns<'a>(&'a self) -> BytesColumns<'a>
Creates a new BytesColumns iterator over &[u8]
fn decode<T: Decodable>(&self) -> Result<T>
Decode row into custom decodable type
fn len(&self) -> usize
Gets columns count