pub type Result<T> = Result<T, GenError>;
Result type for code generation operations
pub enum Result<T> { Ok(T), Err(GenError), }
Contains the success value
Contains the error value