[][src]Function dbase::read

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

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);