pub trait Writer: Send + Sync { // Required method fn write(&self, log: String); }
An trait encapsulating the operations required for writing logs.
Write the log.