Trait handlebars::Output[][src]

pub trait Output {
    fn write(&mut self, seg: &str) -> Result<(), IOError>;
}
Expand description

The Output API.

Handlebars uses this trait to define rendered output.

Required methods

fn write(&mut self, seg: &str) -> Result<(), IOError>[src]

Implementors