Struct horrorshow::TemplateBuffer [] [src]

pub struct TemplateBuffer<'a> { /* fields omitted */ }

A template buffer. This is the type that gets passed to closures inside templates.

Example:

    html! {
        |tmpl /*: &mut TemplateBuffer */| tmpl << "Some String";
    };

Methods

impl<'a> TemplateBuffer<'a>
[src]

Write a raw string to the template output.

Escape and write the formatted arguments to the template output.

Example:

write!(tmpl, "{} + {}", 0, 1);

Escape and write a string to the template output.

Returns an escaping Write adapter.

Returns a non-escaping Write adapter.

Trait Implementations

impl<'a, 'b, T> Shl<T> for &'a mut TemplateBuffer<'b> where
    T: RenderOnce
[src]

The resulting type after applying the << operator.

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.

Auto Trait Implementations

impl<'a> !Send for TemplateBuffer<'a>

impl<'a> !Sync for TemplateBuffer<'a>