Skip to main content

Reporter

Trait Reporter 

Source
pub trait Reporter {
    // Required methods
    fn info(&mut self, msg: &str);
    fn warn(&mut self, msg: &str);
    fn error(&mut self, msg: &str);
}

Required Methods§

Source

fn info(&mut self, msg: &str)

Source

fn warn(&mut self, msg: &str)

Source

fn error(&mut self, msg: &str)

Implementors§