pub trait LogStream: Send + Sync {
// Required method
fn write(&mut self, message: &str);
}
👎Deprecated: Custom log streams removed due to FFI safety issues. Use verbose logging instead.
Expand description
Trait for custom log stream implementations
DEPRECATED: This trait is no longer functional due to FFI callback safety issues. Custom log streams have been removed to prevent access violations.