Trait zicsv::GenericReader [] [src]

pub trait GenericReader {
    fn get_timestamp(&self) -> &DateTime;
fn iter<'a>(
        &'a mut self
    ) -> Box<Iterator<Item = Result<Record, Error>> + 'a>; }

Generic interface independent of underlying IO stream.

Required Methods

Date of last update of this list.

Iterate over records using generic iterator.

Implementors