[][src]Trait yarte::RenderA

pub trait RenderA {
    fn __renders_it(&self, buf: &mut Formatter) -> Result<(), Error>;
}

Auto ref trait

Required methods

fn __renders_it(&self, buf: &mut Formatter) -> Result<(), Error>

Render in buffer will html escape the string type

Safety

Possible overlap if you have a chance to implement: have a buffer reference in your data type

Loading content...

Implementors

impl<T> RenderA for T where
    T: Render + ?Sized
[src]

Loading content...