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