[][src]Trait service_logging::prelude::AppendsLog

pub trait AppendsLog {
    pub fn log(&mut self, e: LogEntry);
}

Can append log entries. (technically, the first param of the log! macro just needs to implement this fn signature, and doesn't need to impl this trait)

Required methods

pub fn log(&mut self, e: LogEntry)[src]

Appends entry to log queue

Loading content...

Implementors

impl AppendsLog for LogQueue[src]

pub fn log(&mut self, e: LogEntry)[src]

Appends a log entry to the queue

Loading content...