Trait WriterContainer

Source
pub trait WriterContainer<W>
where W: Write + ToolIO<OutputItem = LogEntry>,
{ // Required method fn writer(&mut self) -> &mut W; }
Expand description

Object which contains a Writer that can be borrowed

Required Methods§

Source

fn writer(&mut self) -> &mut W

Implementors§

Source§

impl<W> WriterContainer<W> for DefaultLogFormatter<W>
where W: Write + ToolIO<OutputItem = LogEntry>,