Martin Berg Alstad 762330189d More derives for types.
Addee new_safe constructor for Interval type
2024-08-25 00:55:14 +02:00

23 lines
504 B
Rust

use diesel::result::Error;
use thiserror::Error;
/// Error type for CRUD operations
#[derive(Debug, PartialEq, Error)]
pub enum CrudError {
#[error("Resource not found")]
NotFound,
#[error("Database pool error: {0}")]
PoolError(String),
#[error(transparent)]
Other(Error),
}
impl From<Error> for CrudError {
fn from(error: Error) -> Self {
match error {
Error::NotFound => CrudError::NotFound,
_ => CrudError::Other(error),
}
}
}