pub type SqlResult<T> = Result<T, SqlErrorCode>;
pub enum SqlResult<T> { Ok(T), Err(Error<SqlErrorCode>), }
Contains the success value
Contains the error value