pub trait LogOutput: PineOutput {
// Required methods
fn add_log(&mut self, level: LogLevel, message: String);
fn get_logs(&self) -> &[LogEntry];
}Expand description
Extension trait for logging output
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".