pub type Result<T> = Result<T, PoolError>;
Result type for database pool operations
pub enum Result<T> { Ok(T), Err(PoolError), }
Contains the success value
Contains the error value