Trait Printer

Source
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);
}

Required Methods§

Source

fn clear(&self)

Source

fn print(&self, output: &str)

Source

fn eprint(&self, output: &str)

Source

fn println(&self, output: &str)

Source

fn eprintln(&self, output: &str)

Implementors§