[][src]Trait service_logging::prelude::AppendsLogInnerMut

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

Can append log entries. Used for objects with inner mutability

Required methods

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

Appends entry to log queue

Loading content...

Implementations on Foreign Types

impl AppendsLogInnerMut for Rc<Mutex<LogQueue>>[src]

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

Appends log entry to deferred log queue Since the parameter is not mut, this only works with Mutex or cell types

Loading content...

Implementors

Loading content...