pub trait Render {
    fn render(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description

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

Required Methods

Implementations on Foreign Types

Implementors