pub trait ExternalPrinter { // Required method fn print(&mut self, msg: String) -> Result<()>; }
External printer
Print message to stdout