pub trait Reporter {
// Required methods
fn info(&mut self, msg: &str);
fn warn(&mut self, msg: &str);
fn error(&mut self, msg: &str);
}Expand description
Reporter interface shared with the host crate. Parallel publish forwards status updates and warnings through this trait.