pub trait CsvWriter { // Required method fn write_csv(&self, data: &str, path: &Path) -> Result<(), CsvError>; }
Contains the method to abstract the writing of CSV files