pub type AppResult<T> = Result<T, AppError>;
Use this for most functions that return a result
enum AppResult<T> { Ok(T), Err(AppError), }
Contains the success value
Contains the error value