pub trait RenderBytes {
    fn render<B>(self, buf: &mut B)
   where
        B: Buffer
; }
Expand description

Render trait, used for wrap expressions {{ ... }} when it’s in a html template

Required Methods

Render in buffer will html escape the string type

Panics

With an new buffer, render length overflows usize

Implementations on Foreign Types

Implementors