Trait Output
handlebars
pub trait Output { fn write(&mut self, seg: &str) -> Result<(), IOError>; }
The Output API.
Handlebars uses this trait to define rendered output.
fn write(&mut self, seg: &str) -> Result<(), IOError>