pub trait TLogger {
    fn info(&mut self, data: impl Into<String>);
    fn warn(&mut self, data: impl Into<String>);
    fn error(&mut self, data: impl Into<String>);
    fn flush(&mut self);
    fn set_instant(&mut self, instant: bool);
}

Required Methods§

Implementors§