#[non_exhaustive] #[derive(Debug, thiserror::Error)] pub enum Error { #[error("Database Implementation Error: {0}")] Backend(#[from] sqlx::Error), } pub type Result = std::result::Result;