[][src]Trait stlog::GlobalLog

pub trait GlobalLog: Sync {
    fn log(&self, address: u8);
}

A global version of the Log trait

This is very similar to Log except that the implementor must ensure that this method is synchronized with other invocations of itself that could occur concurrently. Also, note that there the return type is () and not Result so errors must be handled by the log method.

Required methods

fn log(&self, address: u8)

Loading content...

Implementors

impl GlobalLog for NullLogger[src]

Loading content...