pub trait Printer {
// Required methods
fn clear(&self);
fn print(&self, output: &str);
fn eprint(&self, output: &str);
fn println(&self, output: &str);
fn eprintln(&self, output: &str);
}pub trait Printer {
// Required methods
fn clear(&self);
fn print(&self, output: &str);
fn eprint(&self, output: &str);
fn println(&self, output: &str);
fn eprintln(&self, output: &str);
}