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

Auto copy/deref trait

Required Methods

Render in buffer will html escape the string type

Panics

With an empty buffer, render length overflows usize

Implementors