CsvWriter

Trait CsvWriter 

Source
pub trait CsvWriter {
    // Required method
    fn write_csv(&self, data: &str, path: &Path) -> Result<(), CsvError>;
}
Expand description

Contains the method to abstract the writing of CSV files

Required Methods§

Source

fn write_csv(&self, data: &str, path: &Path) -> Result<(), CsvError>

Implementors§