pub type Result<T> = Result<T, Error>;Expand description
A type alias for results using the custom Error type.
This alias simplifies the return type for functions that may fail, ensuring consistency across the codebase.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}