pub type SQLiteResult<T> = Result<T, Error>;
A typedef of the result returned by many methods.
pub enum SQLiteResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value