pub type Result<T> = Result<T, SqlxError>;
Result type used by SQLx adapter operations.
pub enum Result<T> { Ok(T), Err(SqlxError), }
Contains the success value
Contains the error value