pub trait HttpRequestDetails {
// Required methods
fn get_headers(&self) -> HashMap<String, String>;
fn get_form_values(&self) -> HashMap<String, String>;
}pub trait HttpRequestDetails {
// Required methods
fn get_headers(&self) -> HashMap<String, String>;
fn get_form_values(&self) -> HashMap<String, String>;
}