sailfish 0.0.3

Really fast, intuitive template engine for Rust
Documentation
pub mod runtime;

pub use runtime::{RenderError, RenderResult};

/// Template that can be rendered with consuming itself.
pub trait TemplateOnce {
    fn render_once(self) -> runtime::RenderResult;
}

/// WIP
pub trait Template {
    fn render(&self) -> runtime::RenderResult;
}