pub type Result<T> = Result<T, DbError>;
Result type alias for soar-db operations.
pub enum Result<T> { Ok(T), Err(DbError), }
Contains the success value
Contains the error value