Trait dbase::WritableRecord[][src]

pub trait WritableRecord {
    fn write_using<'a, W: Write>(
        &self,
        field_writer: &mut FieldWriter<'a, W>
    ) -> Result<(), FieldIOError>; }
Expand description

Trait to be implemented by struct that you want to be able to write to (serialize) a dBase file

Required methods

Use the FieldWriter to write the fields of the record

Implementors