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

Implementors