pub type Result<T> = Result<T, SQLRiteError>;Expand description
This is a type that encapsulated the std::result with the enum SQLRiteError
and makes function signatures easier to read.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SQLRiteError),
}