#![allow(dead_code)]usestd::collections::HashMap;/// Contains all the information about the current request
pubstructRequest{/// Contains all valid headers present on the request
pubheaders:Vec<(String, String)>,
/// Contains the request body
pubbody: String,
/// Contains Request Query
pubquery:HashMap<String, String>}