pub trait ExternalPrinter {
    // Required method
    fn print(&mut self, msg: String) -> Result<()>;
}
Expand description

External printer

Required Methods§

source

fn print(&mut self, msg: String) -> Result<()>

Print message to stdout

Implementors§