pub trait Logger: Debug + Send + Sync {
    fn warn(&self, _message: &str, options: &LoggerWarnOptions) { ... }
    fn debug(&self, _message: &str, options: &LoggerDebugOptions) { ... }
}
Expand description

More information

Provided Methods

More information

More information

Implementors