Function dbase::read[][src]

pub fn read<P: AsRef<Path>>(path: P) -> Result<Vec<Record>, Error>
Expand description

One liner to read the content of a .dbf file

Example

let records = dbase::read("tests/data/line.dbf").unwrap();
assert_eq!(records.len(), 1);