pub trait Logger:
Debug
+ Send
+ Sync {
// Provided methods
fn warn(&self, _message: &str, options: &LoggerWarnOptions) { ... }
fn debug(&self, _message: &str, options: &LoggerDebugOptions) { ... }
}
Expand description
More information: Sass documentation
Provided Methods§
Sourcefn warn(&self, _message: &str, options: &LoggerWarnOptions)
fn warn(&self, _message: &str, options: &LoggerWarnOptions)
More information: Sass documentation
Sourcefn debug(&self, _message: &str, options: &LoggerDebugOptions)
fn debug(&self, _message: &str, options: &LoggerDebugOptions)
More information: Sass documentation