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

    fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), IOError> { ... }
}
Expand description

The Output API.

Handlebars uses this trait to define rendered output.

Required Methods

Provided Methods

Designed to be used with write! macro. for backward compatibility and to avoid breakage the default implementation uses format! this may be not what you want.

Implementors