pub type Result<T> = Result<T, Error>;
This crate’s Result: the same shape as sqlx::Result, with qbrs_sqlx::Error as the fixed error type.
Result
sqlx::Result
qbrs_sqlx::Error
pub enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value