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), }