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