pub trait LogStream: Send + Sync {
    // Required method
    fn log(&self, l: LogEntry);
}

Required Methods§

source

fn log(&self, l: LogEntry)

Implementors§