pub type HtmlResult = AppResult<Html<String>>;
If you are returning HTML, use this.
enum HtmlResult { Ok(Html<String>), Err(AppError), }
Contains the success value
Contains the error value