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