usecore::ops::Shl;usecrate::render::RenderOnce;usecrate::template::TemplateBuffer;impl<'a, 'b, T>Shl<T>for&'amutTemplateBuffer<'b>where
T: RenderOnce,
{typeOutput=();/// Render the component into the template.
////// Note: If writing to the template fails, this method will neither panic nor return errors.
/// Instead, no more data will be written to the template and horrorshow abort template
/// rendering (return an error) when it re-gains control.
fnshl(self, component: T){
component.render_once(self);}}