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(&self) -> Result<Columns>

Gets an iterator over columns

fn bytes_columns(&self) -> BytesColumns

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

fn is_empty(&self) -> bool

Row is empty if there is no columns