pub struct TemplateBuffer<'a> { /* private fields */ }Expand description
A template buffer. This is the type that gets passed to closures inside templates.
Example:
html! {
|tmpl /*: &mut TemplateBuffer */| tmpl << "Some String";
};Implementations§
Source§impl<'a> TemplateBuffer<'a>
impl<'a> TemplateBuffer<'a>
Sourcepub fn record_error<E: Into<Box<dyn Error + Send + Sync>>>(&mut self, e: E)
pub fn record_error<E: Into<Box<dyn Error + Send + Sync>>>(&mut self, e: E)
Record an error. If a template calls this function, rendering will be short-circuited and the error will be returned to the user.
FEATURE:
- With “alloc” but without “std”, accepts anything that can be
converted to a string (anything implementing
ToString). - Without “std” or “alloc”, accepts a static
&str. Multiple calls will record the first error.
Sourcepub fn write_fmt(&mut self, args: Arguments<'_>)
pub fn write_fmt(&mut self, args: Arguments<'_>)
Escape and write the formatted arguments to the template output.
Example:
write!(tmpl, "{} + {}", 0, 1);Sourcepub fn as_writer<'b>(&'b mut self) -> TemplateWriter<'a, 'b>
pub fn as_writer<'b>(&'b mut self) -> TemplateWriter<'a, 'b>
Returns an escaping Write adapter.
Sourcepub fn as_raw_writer<'b>(&'b mut self) -> RawTemplateWriter<'a, 'b>
pub fn as_raw_writer<'b>(&'b mut self) -> RawTemplateWriter<'a, 'b>
Returns a non-escaping Write adapter.
Trait Implementations§
Source§impl<'a, 'b, T> Shl<T> for &'a mut TemplateBuffer<'b>where
T: RenderOnce,
impl<'a, 'b, T> Shl<T> for &'a mut TemplateBuffer<'b>where
T: RenderOnce,
Source§fn shl(self, component: T)
fn shl(self, component: T)
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> Freeze for TemplateBuffer<'a>
impl<'a> !RefUnwindSafe for TemplateBuffer<'a>
impl<'a> !Send for TemplateBuffer<'a>
impl<'a> !Sync for TemplateBuffer<'a>
impl<'a> Unpin for TemplateBuffer<'a>
impl<'a> !UnwindSafe for TemplateBuffer<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more