1 2 3 4 5 6 7
#[derive(Debug, PartialEq)] pub enum ReefDBError { TableNotFound(String), ColumnNotFound(String), ParseError(String), Other(String), }