pub type Result<T> = Result<T, UtilsError>;Expand description
Result type returned by utility helpers.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(UtilsError),
}pub type Result<T> = Result<T, UtilsError>;Result type returned by utility helpers.
pub enum Result<T> {
Ok(T),
Err(UtilsError),
}