pub async fn write_csv_lines<I, S>( lines: I, file_path: &PathBuf, headers: Option<&[&str]>, ) -> Result<(), String>where I: Iterator<Item = Vec<S>>, S: AsRef<str>,
Write simple CSV lines asynchronously