[−][src]Trait log4rs::encode::Write
A trait for types that an Encode
r will write to.
It extends std::io::Write
and adds some extra functionality.
Provided methods
fn set_style(&mut self, style: &Style) -> Result<()>
Sets the output text style, if supported.
Write
rs should ignore any parts of the Style
they do not support.
The default implementation returns Ok(())
. Implementations that do
not support styling should do this as well.