1 2 3 4 5
use anyhow::{Error, Result}; pub fn to_bytes() -> Result<csv::Writer<Vec<u8>>, Error> { Ok(csv::Writer::from_writer(Vec::<u8>::new())) }