pub type JsonResult<T> = AppResult<Json<T>>;
If you are returning JSON, use this.
enum JsonResult<T> { Ok(Json<T>), Err(AppError), }
Contains the success value
Contains the error value