pub type GenericSQLResult<T> = Result<T, GenericSQLError>;Expand description
Result type alias for SQL operations.
Aliased Type§
pub enum GenericSQLResult<T> {
Ok(T),
Err(GenericSQLError),
}pub type GenericSQLResult<T> = Result<T, GenericSQLError>;Result type alias for SQL operations.
pub enum GenericSQLResult<T> {
Ok(T),
Err(GenericSQLError),
}