/// Represent the ability of a segment of a string template to render template output.
pubtraitRender<Respond, Output, Error> {/// Optionally send a query the respond function for output, then render.
fnrender(self, respond:&mut Respond)->Result<Output, Error>;}