pub enum Error { Database(sqlx::Error), } impl From for Error { fn from(e: sqlx::Error) -> Self { Error::Database(e) } }