pub trait ServerLogSinkPort: Send + Sync {
// Required method
fn append(&self, port: u16, stream_type: &str, line: String);
}Expand description
Port for appending server log lines to a sink.
Implementations should be thread-safe and non-blocking where possible.