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

Auto ref trait

Required Methods

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

Implementors