pub trait Logs<T> {
    fn logger(&self) -> &T;
}
Expand description

Something that Logs will have constructed something of type T that Prints.

Required Methods

Borrows a logger.

Implementors