lazy-template 0.2.0

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