pub type Result<T> = Result<T, AppError>;
Result type alias for the library
pub enum Result<T> { Ok(T), Err(AppError), }
Contains the success value
Contains the error value