read

Function read 

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