pub type DcsvResult<T> = Result<T, DcsvError>;
Result of dcsv operations
pub enum DcsvResult<T> { Ok(T), Err(DcsvError), }
Contains the success value
Contains the error value