tmontaigu / dbase-rs

Rust library to read & write dBase files.
MIT License
29 stars 30 forks source link

Allow the writing of records one by one #14

Closed tmontaigu closed 3 years ago

tmontaigu commented 3 years ago

Refactor the TableWriter to be able to write one record at a time.

Add a write_record method to write one record (callable many time) Rename write to write_records and change its arguments from &[Record] to IntoIterator<&Record>