1 2 3 4 5 6 7 8 9 10
use std::collections::HashMap; #[derive(Debug)] pub struct Report { pub id: String, pub headers: HashMap<String, String>, pub status_code: u16, pub req_start: u128, pub req_end: u128, }