pub trait Logger {
    // Required methods
    fn stdout(&self, output: &str) -> Result<()>;
    fn stderr(&self, output: &str) -> Result<()>;
}

Required Methods§

source

fn stdout(&self, output: &str) -> Result<()>

source

fn stderr(&self, output: &str) -> Result<()>

Implementors§