csvenum 0.1.4

Generate code for enums with associated constants from a .csv in your command line.
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error as Error;


#[derive(Error, Debug, PartialEq)]
pub enum GenError {

    #[error("Malformed declaration: {0}")]
    DeclarationMalformed(String),

}