pub trait Logger<T>: Send { // Required method fn log(&mut self, item: T); }
The logger trait.
Logs an item.
item