/// A struct representing the request to the server for the main API.
////// Example: https://opentdb.com/api.php?amount=10&category=10&difficulty=medium&type=multiple&encode=base64
#[derive(Deserialize, Debug)]pubstructApiRequest{pubbase_url: String,
pubquestions:u8,
pubcategory:u8,
pubdifficulty: String,
pubquestion_type: String,
pubencoding: String,
pubtoken: String,
}