Trait stpl::Renderer [] [src]

pub trait Renderer {
    fn write_raw(&mut self, data: &[u8]) -> Result<()>;

    fn write(&mut self, data: &[u8]) -> Result<()> { ... }
fn write_fmt(&mut self, fmt: Arguments) -> Result<()> { ... }
fn write_str(&mut self, s: &str) -> Result<()> { ... }
fn write_raw_fmt(&mut self, fmt: Arguments) -> Result<()> { ... }
fn write_raw_str(&mut self, s: &str) -> Result<()> { ... } }

Rendering destination

Takes care of escaping and such.

Required Methods

Provided Methods

Implementors