pub trait ReportServant { // Required methods fn name(&self) -> &str; fn category(&self) -> &'static str; fn serve(&mut self, req: Vec<u8>); }