tmontaigu / dbase-rs

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

Add RecordIterator to public interface. #9

Closed erikaderstedt closed 4 years ago

erikaderstedt commented 4 years ago

RecordIterator is not exposed on the public interface, preventing e.g. having a RecordIterator as a struct field:

struct MyStruct { dbase::RecordIterator<BufReader<File>>, }

This pull requests adds RecordIterator to the exposed interface on the crate.