pub type UtilResult<T> = Result<T, UtilError>;Expand description
Used as the result types for all utils.
See also UtilError for documentation on how to return errors from models.
Aliased Type§
pub enum UtilResult<T> {
Ok(T),
Err(UtilError),
}