Closed tmontaigu closed 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>
write_record
write
write_records
&[Record]
IntoIterator<&Record>
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) Renamewrite
towrite_records
and change its arguments from&[Record]
toIntoIterator<&Record>