lazy_template/
render.rs

1/// Represent the ability of a segment of a string template to render template output.
2pub trait Render<Respond, Output, Error> {
3    /// Optionally send a query the respond function for output, then render.
4    fn render(self, respond: &mut Respond) -> Result<Output, Error>;
5}